Exemple #1
0
 private void btnXoa_Click(object sender, EventArgs e)
 {
     if (txtMaKhachHang.Text == "")
     {
         MessageBox.Show("Thất bại, chưa nhập mã khách hàng cần xóa!");
     }
     else
     {
         DialogResult rs = MessageBox.Show("Bạn thực sự muốn xóa \"" + txtHoTen.Text + "\" ra khỏi danh sách?", "Xác nhận", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
         if (rs == DialogResult.Yes)
         {
             bus.DeleteKhachHang(txtMaKhachHang.Text.Trim());
             MessageBox.Show("Xóa thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
             LoadData();
         }
     }
 }
        private void btnXoa_Click(object sender, EventArgs e)
        {
            DialogResult res = MessageBox.Show("Bạn có muốn xóa không?", "Xóa khách hàng", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

            if (res == DialogResult.Yes)
            {
                try
                {
                    id_KhachHang = Int32.Parse(txtID_KhachHang.Text);
                    hoTenNV      = txtTenKH.Text;
                    if (rabNam.Checked)
                    {
                        gioiTinh = "Nam";
                    }
                    if (rabNu.Checked)
                    {
                        gioiTinh = "Nữ";
                    }
                    diaChi = txtDiaChi.Text;
                    sdt    = txtSDT.Text;

                    KhachHang_ET khachHang = new KhachHang_ET(id_KhachHang, hoTenNV, gioiTinh, diaChi, sdt);
                    if (bus_KhachHang.DeleteKhachHang(khachHang) == true)
                    {
                        MessageBox.Show("Xóa khách hàng thành công!", Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Information);
                        showButton(false);
                        clearText();
                        dtgvKhachHang.DataSource = bus_KhachHang.GetAllKhachHang();
                    }
                    else
                    {
                        MessageBox.Show("Xóa thất bại!", Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show("Đã xảy ra lỗi: " + ex.Message, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
        }