Exemple #1
0
 private void btnInvAdd_Click(object sender, EventArgs e)
 {
     try
     {
         frmInvestigations fp = new frmInvestigations(600, 500);
         //fp.MdiParent = this.MdiParent;
         fp.ShowDialog(this);
         cmbInvestigation.DataSource = objCD.InvestigationsCombo(0);
     }
     catch (Exception ex)
     {
         CommonLogger.Info(ex.ToString());
     }
 }
Exemple #2
0
 private void btnDashInvestigation_Click(object sender, EventArgs e)
 {
     try
     {
         if (Application.OpenForms.OfType <frmInvestigations>().Count() == 1)
         {
             Application.OpenForms.OfType <frmInvestigations>().First().BringToFront();
         }
         else
         {
             frmInvestigations frm = new frmInvestigations();
             frm.MdiParent = this.MdiParent;
             frm.Show();
         }
     }
     catch (Exception ex)
     {
         CommonLogger.Info(ex.ToString());
     }
 }
Exemple #3
0
 private void menuItemInves_Click(object sender, EventArgs e)
 {
     try
     {
         if (Application.OpenForms.OfType <frmInvestigations>().Count() == 1)
         {
             Application.OpenForms.OfType <frmInvestigations>().First().BringToFront();
         }
         else
         {
             frmInvestigations fdc = new frmInvestigations();
             fdc.MdiParent = this;
             fdc.Show();
             fdc.WindowState = FormWindowState.Maximized;
         }
     }
     catch (Exception ex)
     {
         CommonLogger.Info(ex.ToString());
     }
 }