private void LoadData() { try { dtNV = new DataTable(); dtNV.Clear(); DataSet ds = blNV.LayDSNV(); dtNV = ds.Tables[0]; dtNV.Columns.RemoveAt(6); dgvNV.Columns[5].DefaultCellStyle.Format = "dd/MM/yyyy"; dtNV.Columns.Remove("Hide"); dgvNV.DataSource = dtNV; this.MaNV_TextBox.ResetText(); this.TenNV_TextBox.ResetText(); this.Luong_TextBox.ResetText(); this.ChucVu_ComboBox.ResetText(); NgaySinh_DateTimePicker.Format = DateTimePickerFormat.Custom; NgaySinh_DateTimePicker.CustomFormat = " "; Nam_RadioButton.Checked = false; Nu_RadioButton.Checked = false; this.Reload_Button.Enabled = true; this.Edit_Button.Enabled = true; this.Back_Button.Enabled = true; this.Add_Button.Enabled = true; this.Cancel_Button.Enabled = false; this.Save_Button.Enabled = false; this.panel.Enabled = false; } catch (SqlException) { MessageBox.Show("Không lấy được nội dung trong table NhanVien !"); } }