예제 #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            String amountText = this.textBox1.Text;
            int    val        = 0;
            bool   result     = int.TryParse(amountText, out val);

            if (result)
            {
                int amount = Int32.Parse(amountText);
                Console.WriteLine("WithDrawing : " + amount);
                int currentBalance = myATM.getCurrentUserBalance();
                if (currentBalance >= amount)
                {
                    int lastBal = myATM.getCurrentUserBalance();
                    myATM.withdrawFunds(amount);
                    Console.WriteLine(myATM.getCurrentUserBalance());
                    VanishingScreen vs = new VanishingScreen(lastBal, myATM);
                    this.Hide();
                    vs.Show();
                }
                else
                {
                    MessageBox.Show("Invalid Withdraw Amount", "Invalid Withdraw Amount", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            else
            {
                MessageBox.Show("Please only input integers", "Invalid Withdraw Input", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            return;
        }
예제 #2
0
        // Withdraw 20 quick button
        private void button1_Click(object sender, EventArgs e)
        {
            int amount = 20;

            Console.WriteLine("WithDrawing : " + amount);
            int currentBalance = myATM.getCurrentUserBalance();

            if (currentBalance >= amount)
            {
                int lastBal = myATM.getCurrentUserBalance();
                myATM.withdrawFunds(amount);
                Console.WriteLine(myATM.getCurrentUserBalance());
                VanishingScreen vs = new VanishingScreen(lastBal, myATM);
                this.Hide();
                vs.Show();
            }
            else
            {
                MessageBox.Show("Invalid Withdraw Amount", "Invalid Withdraw Amount", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            return;
        }