Em bắt sự kiện click vào 1 hàng trong DataGridView và muốn
- Dữ liệu hiển thị lên DateTimePicker thì làm thế nào ạ? Dữ liệu Ngày sinh e đang lưu trong CSDL là kiểu date ạ
- Dữ liệu hiển thị lên RadioButton thì phải check thế nào để hiển thị đúng radio ạ? Vì e có radioNam và radioNu, Giới tính e lưu trong CSDL kiểu bit ạ
Em mới hiển thị lên textbox đc thôi ạ. Giúp em với
private void dgvKH_CellClick(object sender, DataGridViewCellEventArgs e)
{
int t = dgvKH.CurrentCell.RowIndex;
txtMaKH.Text = dgvKH.Rows[t].Cells[0].Value.ToString();
txtTenKH.Text = dgvKH.Rows[t].Cells[1].Value.ToString();
}