private void button1_Click(object sender, EventArgs e)
        {
            Searching.AccNumber = txtSearchAccNumber.Text;

            this.Hide();
            CustomerBoardAccountTransaction cus = new CustomerBoardAccountTransaction();

            cus.Show();
            txtSearchAccNumber.Text = "";
        }
Exemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            connection.sqlCon.Open();
            try
            {
                OleDbCommand command = new OleDbCommand();
                command.Connection = connection.sqlCon;
                String particulars = "withdraw " + txtAmountDeposit.Text;
                command.CommandText = "INSERT INTO customerwithdraw (accnum,amountwithdraw,particular,newbalance,datetransact)" +
                                      "VALUES('" + Searching.AccNumber + "','" + int.Parse(txtAmountDeposit.Text) + "','" + particulars + "','" + (Searching.CurrentBalance - int.Parse(txtAmountDeposit.Text)) + "','" + DateTime.Now + "')";
                command.ExecuteNonQuery();
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error adding to customer withdraw table " + ex, "Error");
            }

            //Update customer balance
            try
            {
                OleDbCommand command1 = new OleDbCommand();
                command1.Connection = connection.sqlCon;

                command1.CommandText = "UPDATE customerbalance SET currentbalance= currentbalance-'" + int.Parse(txtAmountDeposit.Text) + "', asof='" + DateTime.Now + "' WHERE accnum = '" + Searching.AccNumber + "'";
                command1.ExecuteNonQuery();
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error updateing to customer balance " + ex, "Error");
            }
            connection.sqlCon.Close();

            MessageBox.Show(txtAmountDeposit.Text + " is successfully withdraw into the account", "SUCCESS");
            this.Hide();
            txtAmountDeposit.Text = "";
            CustomerBoardAccountTransaction cus = new CustomerBoardAccountTransaction();

            cus.Show();
        }