Пример #1
0
 private void BtnHuyDH_Click(object sender, EventArgs e)
 {
     try
     {
         db.Xoa_DonHang(Convert.ToInt32(lbMadh.Text));
         MessageBox.Show("Hủy đơn hàng thành công!", "Thông báo!", MessageBoxButtons.OK, MessageBoxIcon.Information);
         try
         {
             dgvLSdonhang.DataSource = db.Lichsuadonhang(db.getmakh(email));
             lbMadh.Text             = dgvLSdonhang.CurrentRow.Cells[0].Value.ToString();
             lbPhi.Text       = dgvLSdonhang.CurrentRow.Cells[1].Value.ToString();
             lbngaydat.Text   = dgvLSdonhang.CurrentRow.Cells[2].Value.ToString();
             lbTinhtrang.Text = db.Tinhtrang(Convert.ToInt32(dgvLSdonhang.CurrentRow.Cells[3].Value.ToString()));
         }
         catch (Exception)
         {
             lbMadh.Text      = "Mã ĐH";
             lbPhi.Text       = "Phí";
             lbngaydat.Text   = "Ngày đặt";
             lbTinhtrang.Text = "Tình trạng";
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Thông báo!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }