private void OnAddNewMainInvestigationClick(object sender, EventArgs e)
        {
            MainInvestigation obj = new MainInvestigation(this.mOPDInvestigationProcedure);

            MainInvestigationForm.ShowForm(obj);
            MainInvestigationCollection opdMainInvestigationList = new MainInvestigationCollection();

            this.cmbMainInvestigation.DataSource    = opdMainInvestigationList;
            this.cmbMainInvestigation.DisplayMember = "DisplayName";
        }