add checkbox on a datagridview

  • Thread starter Thread starter no[one]
  • Start date Start date
N

no[one]

Guest
ive added my checkbox on my datagrid but when I run and click the checkbox it wont check here is my code

Dim chk As New DataGridViewCheckBoxColumn()
DataGridView1.Columns.Add(chk)
chk.HeaderText = "Action"
chk.Name = "chk"

Continue reading...
 
Back
Top