private void button3_Click(object sender, EventArgs e)
        {
            ComprobacionCliente form_Comprobacion = new ComprobacionCliente();

            this.Hide();
            form_Comprobacion.Show();
        }
Example #2
0
        private void buttonWithdraw_Click(object sender, EventArgs e)
        {
            ComprobacionCliente form_Comprobacion = new ComprobacionCliente(CurrentUser, Decimal.Parse(BalanceActualLabel.Text, NumberStyles.Currency));

            this.Hide();
            form_Comprobacion.Show();
        }