/// <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; } }
/// <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); } }