kwangu

Code for adding checkbox in DatagridView

Sep 2nd, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Dim chk As New DataGridViewCheckBoxColumn()
  2. With .Columns.Add(chk)
  3.                 chk.HeaderText = ""
  4.                 chk.Width = 50
  5.             End With
Add Comment
Please, Sign In to add comment