private void btnThanhToan_Click(object sender, EventArgs e) { string sobitru = txtTienKhachDua.Text.Replace(",", ""); string sotru = txtTongTienHang.Text.Replace(",", ""); // string sql = "update Bill set status = 1, tongtien=" + sotru + ", ghichu= N'" + txtGhiChu.Text + "' where idbill=" + GetIdOfBill().ToString(); int x = DataProvider.Instance.ExecuteNonQuery(sql); MessageBox.Show(x.ToString() + " hóa đơn đã được thanh toán."); // FrmTinhToan f = new FrmTinhToan(); f.TienHang = Convert.ToInt32(sotru); f.TienKhachDua = Convert.ToInt32(sobitru); f.Show(); this.Close(); }
private void btnCalculate_Click(object sender, EventArgs e) { try { FrmTinhToan f = new FrmTinhToan(); string sobitru = txtCustomerMoney.Text.Replace(",", ""); string sotru = txtProductValue.Text.Replace(",", ""); f.TienKhachDua = Convert.ToInt32(sobitru); f.TienHang = Convert.ToInt32(sotru); f.Show(); txtProductValue.Text = ""; txtCustomerMoney.Text = ""; } catch (Exception ex) { MessageBox.Show(ex.Message); } }