//this.checkedListBox1.CheckOnClick = true;
 public TestLogWizard(string name, string description, MainForm parentForm)
 {
     InitializeComponent();
     this.name = name;
     this.description = description;
     this.parentForm = parentForm;
 }
 public TestSummaryReportWizard(string name, string description, MainForm parentForm)
 {
     //put in the designer
     //this.checkedListBox1.CheckOnClick = true;
     InitializeComponent();
     this.name = name;
     this.description = description;
     this.parentForm = parentForm;
 }
 public TestDesignWizard(string name, string description, MainForm parentForm)
 {
     InitializeComponent();
     this.checkedListBox1.CheckOnClick = true;
     this.name = name;
     //this.version = version;
     this.description = description;
     this.parentForm = parentForm;
 }
        public newDocumentForm(MainForm parentForm)
        {
            InitializeComponent();
            comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
            this.parentForm = parentForm;
            nameTextBox.MaxLength = 50;
            descriptionTextBox.MaxLength = 255;

            //Populates combobox
            for (int i = 0; i < componentItems.Length; i++)
            {
                comboBox1.Items.Add(componentItems[i]);
            }
        }
 public CustomWizard(string name, string desc, MainForm parentForm)
 {
     this.parentForm = parentForm;
     this.name = name;
     this.description = desc;
     InitializeComponent();
     preveiwPanel.AutoScroll = true;
     componentsComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
     textBox1.MaxLength = 255;
     //Populates combobox
     for (int i = 0; i < componentItems.Length; i++)
     {
         componentsComboBox.Items.Add(componentItems[i]);
     }
 }