コード例 #1
0
        private void PopulateFormComboBoxes()
        {
            EntitiesToComboBox.FillEmployeeComboBox(comboBoxCDFInfoTech);

            addProcessPerformedHelper.PopulateComboBoxWithUtilityStrings();
            addDeviceUsedHelper.PopulateComboBoxWithUtilityStrings();
            addSoftwareHelper.PopulateComboBoxWithUtilityStrings();
            addImagesMadeHelper.PopulateComboBoxWithUtilityStrings();
            addImagesVerifiedByHelper.PopulateComboBoxWithUtilityStrings();

            ////processing performed
            //comboBoxProcessPerformed.Items.Clear();
            //comboBoxProcessPerformed.Items.Add("Imaging");
            //comboBoxProcessPerformed.Items.Add("Logical Copy");
            //comboBoxProcessPerformed.Items.Add("Clone");
            //comboBoxProcessPerformed.Items.Add("Review");
            //comboBoxProcessPerformed.Items.Add("No Processing");

            ////forensic device used
            //comboBoxDeviceUsed.Items.Clear();
            //comboBoxDeviceUsed.Items.Add("Portable Computer");
            //comboBoxDeviceUsed.Items.Add("Write Blocker");
            //comboBoxDeviceUsed.Items.Add("TD1 Duplicator");
            //comboBoxDeviceUsed.Items.Add("Other");

            ////software used
            //comboBoxSoftwareProcessing.Items.Clear();
            //comboBoxSoftwareProcessing.Items.Add("FTK Imager");
            //comboBoxSoftwareProcessing.Items.Add("EnCase");
            //comboBoxSoftwareProcessing.Items.Add("Helix Pro");
            //comboBoxSoftwareProcessing.Items.Add("Other");
            //comboBoxSoftwareProcessing.Items.Add("Version");


            ////images made
            //comboBoxImagesMade.Items.Clear();
            //comboBoxImagesMade.Items.Add("EDD");
            //comboBoxImagesMade.Items.Add("Examination Copy");
            //comboBoxImagesMade.Items.Add("Clone Copy");
            //comboBoxImagesMade.Items.Add("Archive");
            //comboBoxImagesMade.Items.Add("Other");

            ////images verified by
            //comboBoxImagesVerifiedBy.Items.Clear();
            //comboBoxImagesVerifiedBy.Items.Add("MD5 Hash");
            //comboBoxImagesVerifiedBy.Items.Add("SHA1 Hash");
            //comboBoxImagesVerifiedBy.Items.Add("SHA 256 Hash");
            //comboBoxImagesVerifiedBy.Items.Add("Not Verified");
            //comboBoxImagesVerifiedBy.Items.Add("Other");
        }
コード例 #2
0
        private void PopulateFormComboBoxes()
        {
            //destination media
            comboBoxDestinationMedia.Items.Clear();
            comboBoxDestinationMedia.Items.Add("Hard Drive");
            comboBoxDestinationMedia.Items.Add("External Drive");
            comboBoxDestinationMedia.Items.Add("DVD");
            comboBoxDestinationMedia.Items.Add("CD");
            comboBoxDestinationMedia.Items.Add("SAN");
            comboBoxDestinationMedia.Items.Add("Floppy");
            comboBoxDestinationMedia.Items.Add("Other");

            addBrandType.PopulateComboBoxWithUtilityStrings();
        }
コード例 #3
0
        private void PopulateFormComboBoxes()
        {
            comboBoxHDType.Items.Clear();
            comboBoxHDType.Items.Add("Solid State Drive");
            comboBoxHDType.Items.Add("Consumer Internal Disk Drive");
            comboBoxHDType.Items.Add("Enterprise Internal Disk Drive");
            comboBoxHDType.Items.Add("External Disk Drive");
            comboBoxHDType.Items.Add("External Flash Drive");
            comboBoxHDType.Items.Add("Other");

            EntitiesToComboBox.FillEmployeeComboBox(comboBoxCdfInfoTech);

            addMakeHelper.PopulateComboBoxWithUtilityStrings();
            addModelHelper.PopulateComboBoxWithUtilityStrings();
        }
コード例 #4
0
        //i want to make the checkbox 'systemwasserver' checked, and the combobox 'servertype' enabled, if the comp type is a server
        //private void comboBoxType_SelectedIndexChanged(object sender, EventArgs e)
        //{
        //    if (comboBoxType.SelectedIndex == 2)
        //    {
        //        checkBoxSystemWasServer.Checked = true;
        //        comboBoxServerType.Enabled = true;
        //    }
        //    else
        //    {
        //        //
        //    }
        //}


        private void PopulateFormComboBoxes()
        {
            //Populate combo Boxes
            EntitiesToComboBox.FillEmployeeComboBox(comboBoxShutDownBy);
            EntitiesToComboBox.FillEmployeeComboBox(comboBoxCdfInfoTech);

            addMakeHelper.PopulateComboBoxWithUtilityStrings();
            addModelHelper.PopulateComboBoxWithUtilityStrings();
            addSetupkeystrokeHelper.PopulateComboBoxWithUtilityStrings();
            addTimeProvidedByHelper.PopulateComboBoxWithUtilityStrings();

            comboBoxType.Items.Clear();
            comboBoxType.Items.Add("Desktop");
            comboBoxType.Items.Add("Laptop");
            comboBoxType.Items.Add("Server");
            comboBoxType.Items.Add("Mobile");
            comboBoxType.Items.Add("Other");
        }