public Create_DestinationMedia()
        {
            InitializeComponent();
            addBrandType = new UtilityListFormHelper("Brand_Type", comboBoxBrandOutput);

            PopulateFormComboBoxes();

            InitializeDestinationMediaList();
        }
        public Create_ForensicProcess()
        {
            InitializeComponent();

            addProcessPerformedHelper = new UtilityListFormHelper("Process_Performed", comboBoxProcessPerformed);
            addDeviceUsedHelper = new UtilityListFormHelper("Device_Used", comboBoxDeviceUsed);
            addSoftwareHelper = new UtilityListFormHelper("Software_Used", comboBoxSoftwareProcessing);
            addImagesMadeHelper = new UtilityListFormHelper("Images_Made", comboBoxImagesMade);
            addImagesVerifiedByHelper = new UtilityListFormHelper("Images_Verified_By", comboBoxImagesVerifiedBy);

            PopulateFormComboBoxes();
        }
        public Create_HardDrive()
        {
            InitializeComponent();

            addMakeHelper = new UtilityListFormHelper("Hard_Drive_Make", comboBoxHDMake);
            addModelHelper = new UtilityListFormHelper("Hard_Drive_Model", comboBoxHDModel);

            PopulateFormComboBoxes();
            IntializeRadioButtons();
            textBoxJumperSettingsOther.Enabled = false;
            textBoxDriveInterfaceOther.Enabled = false;
            textBoxDrivePositionOther.Enabled = false;
        }
        public Create_Computer()
        {
            InitializeComponent();

            comboBoxServerType.Enabled = false;
            textBoxHostname.Enabled = false;
            txtCMOSChangesMade.Enabled = false;

            addMakeHelper = new UtilityListFormHelper("Computer_Make", comboBoxMake);
            addModelHelper = new UtilityListFormHelper("Computer_Model", comboBoxModel);
            addSetupkeystrokeHelper = new UtilityListFormHelper("Computer_Setup_Keystroke", comboBoxSetupKeystroke);
            addTimeProvidedByHelper = new UtilityListFormHelper("Computer_Time_Provider", comboBoxTimeProvidedBy);
            addServerType = new UtilityListFormHelper("Computer_Server_Type", comboBoxServerType);

            PopulateFormComboBoxes();
        }