Exemple #1
0
        private void signOutToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            if (currentBalance > 0)
            {
                WithdrawMenu wm = new WithdrawMenu(this);
                MessageBox.Show("You must withdraw before closing!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);

                wm.Show();
            }
            else
            {
                LoginWindow lw = new LoginWindow();

                this.Hide();
                lw.FormClosed += Lw_FormClosed;

                lw.Show();
            }
        }