コード例 #1
0
 void LoadDataTimKiem()
 {
     try
     {
         dtKH = new DataTable();
         dtKH.Clear();
         DataSet ds = dbKH.Timkiem(txtTimKiem.Text);
         dtKH = ds.Tables[0];
         // Đưa dữ liệu lên DataGridView
         dgvKH.DataSource = dtKH;
         // Thay đổi độ rộng cột
         dgvKH.AutoResizeColumns();
         // Xóa trống các đối tượng trong Panel
         this.txtMaKH.ResetText();
         this.txtTenKH.ResetText();
         this.txtDchi.ResetText();
         this.txtSDT.ResetText();
         this.txtGioiTinh.ResetText();
         this.txtCMND.ResetText();
         // Không cho thao tác trên các nút Lưu / Hủy
         this.btnLuu.Enabled = false;
         this.btnHuy.Enabled = false;
         this.pnlKH.Enabled  = false;
         // Cho thao tác trên các nút Thêm / Sửa / Xóa /Thoát
         this.btnThem.Enabled  = true;
         this.btnSua.Enabled   = true;
         this.btnXoa.Enabled   = true;
         this.btnThoat.Enabled = true;
         SHAREVAR.search_MaKH  = false;
         SHAREVAR.search_TenKH = false;
         SHAREVAR.search_SDT   = false;
         ////
         dgvKH_CellClick(null, null);
     }
     catch
     {
         MessageBox.Show("Không lấy được nội dung trong table Xe. Lỗi rồi!!!");
     }
 }