コード例 #1
0
 /// <summary>
 /// Function to call this form from frmLogin to view details and for updation
 /// </summary>
 /// <param name="frmLogin"></param>
 public void CallFromLogin(frmLogin frmLogin)
 {
     try
     {
         frmLoginObj = frmLogin;
         frmLogin.Close();
         base.Show();
     }
     catch (Exception ex)
     {
         formMDI.infoError.ErrorString = "CCD 4 : " + ex.Message;
     }
 }
コード例 #2
0
 /// <summary>
 /// Function to call this form from frmLogin to view details and for updation
 /// </summary>
 /// <param name="frmLogin"></param>
 public void CallFromLogin(frmLogin frmLogin)
 {
     try
     {
         frmLoginObj = frmLogin;
         frmLogin.Close();
         base.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show("CCD 4 : " + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
コード例 #3
0
 /// <summary>
 /// Function to call this form from frmLogin to view details and for updation 
 /// </summary>
 /// <param name="frmLogin"></param>
 public void CallFromLogin(frmLogin frmLogin)
 {
     try
     {
         frmLoginObj = frmLogin;
         frmLogin.Close();
         base.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show("CCD 4 : " + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }