Datagrid BOOL Column

  • Thread starter Thread starter BRJving
  • Start date Start date
B

BRJving

How, specifically, do you set the value of the checkbox in
a bool column, and how do you retrieve the value.

The MS documentation is really bad on this.

Thanks

BR
 
BR,

To set :
dgrWithBoolColumn (row, <indexOfBoolCol>) = true

To get
dim MyBool as boolean = CBool(drgWithBoolColumn(row, <indexOfBoolCol>)

Hope this helps,
Jan
 
Back
Top