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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top