Ejemplo n.º 1
0
 private void ClosePopupButton()
 {
     if (frmPopupHandle != null)
     {
         clsConst.bfrmPopupButton = false;
         frmPopupHandle.SaveLocation();
         frmPopupHandle.Close();
         frmPopupHandle = null;
     }
 }
Ejemplo n.º 2
0
 private void CallPopupButton()
 {
     if (clsConst.bfrmPopupButton == false)
     {
         frmPopupHandle = new frmPopupButton();
         frmPopupHandle.Show();
     }
     else
     {
         frmPopupHandle.Activate();
     }
 }