Exemplo n.º 1
0
        public static void subShowULGivingHistory(Form _mdiParent)
        {
            try
            {
                if (objULGivingHistory == null || objULGivingHistory.IsDisposed) objULGivingHistory = new Donor.frmULGivingHistory();

                objULGivingHistory.MdiParent = _mdiParent;

                objULGivingHistory.Show();
            }
            catch (Exception ex)
            {
                clsErr.subLogErr("subShowULGivingHistory", ex);
            }
        }
Exemplo n.º 2
0
 public static void subCloseULGivingHistory()
 {
     try
     {
         objULGivingHistory.Close();
         objULGivingHistory.Dispose();
         objULGivingHistory = null;
     }
     catch (Exception ex)
     {
         clsErr.subLogErr("subCloseULGivingHistory", ex);
     }
 }