private void mnuWithdraw_Click(object sender, EventArgs e)
        {
            FrmWithdraw Withdraw = new FrmWithdraw();

            Withdraw.Show();
            this.Hide();
        }
Esempio n. 2
0
        private void withdrawToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FrmWithdraw withdraw = new FrmWithdraw();

            withdraw.Show();
            this.Hide();
        }
Esempio n. 3
0
 private void withdrawToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (!tableLayoutPanel1.Visible)
     {
         FrmWithdraw withdraw = new FrmWithdraw();
         withdraw.Show();
         this.Hide();
     }
     else
     {
         MessageBox.Show("You do not curently have an Active account.\nPlease Create one before continuing");
     }
 }
 private void mnuWithdraw_Click(object sender, EventArgs e)
 {
     if (!tlpNoAccount.Visible)
     {
         Reusable.resetupdate();
         FrmWithdraw withdraw = new FrmWithdraw();
         withdraw.Show();
         this.Hide();
     }
     else
     {
         MessageBox.Show("You do not curently have an Active account.\nPlease Create one before continuing");
     }
 }