private void buttonAddForensicProcess_Click(object sender, EventArgs e)
        {
            newFPSubForm = new Create_ForensicProcess();

            if (CaseComputers.Any() || CaseHardDrives.Any())
            {
                newFPSubForm.SelectableAssociatedComputers  = CaseComputers;
                newFPSubForm.SelectableAssociatedHardDrives = CaseHardDrives;

                newFPSubForm.OnDataAvailable += AddForensicProcessTolist;
                newFPSubForm.FormClosed      += UpdateFormEvent;
                newFPSubForm.Show();
            }
            else
            {
                MessageBox.Show(
                    "It is not useful to create a Foresnsic Process before either A computer or Hard Drive exists");
            }
        }
        private void buttonAddForensicProcess_Click(object sender, EventArgs e)
        {
            newFPSubForm = new Create_ForensicProcess();

            if (CaseComputers.Any() || CaseHardDrives.Any())
            {
                newFPSubForm.SelectableAssociatedComputers = CaseComputers;
                newFPSubForm.SelectableAssociatedHardDrives = CaseHardDrives;

                newFPSubForm.OnDataAvailable += AddForensicProcessTolist;
                newFPSubForm.FormClosed += UpdateFormEvent;
                newFPSubForm.Show();
            }
            else
            {
                MessageBox.Show(
                    "It is not useful to create a Foresnsic Process before either A computer or Hard Drive exists");
            }
        }
        private void buttonAddForensicProcess_Click(object sender, EventArgs e)
        {
            newFPSubForm = new Create_ForensicProcess();

            newFPSubForm.SelectableAssociatedComputers = CaseComputers;
            newFPSubForm.SelectableAssociatedHardDrives = CaseHardDrives;

            newFPSubForm.OnDataAvailable += this.AddForensicProcessTolist;
            newFPSubForm.FormClosed += this.UpdateFormEvent;
            newFPSubForm.Show();
        }