I have a ListView that uses multiple columns. I would like some of the columns to represent a yes/no value, so intuitively, I would like to use Checkboxes for those columns.
I attempted instantiating a Checkbox object and then adding the Checkbox to my code that adds subitems to my ListView:
Dim theCheckbox As CheckBox
lSingleItem.SubItems.Add(theCheckbox)
This doesn't work.
How do I add Checkboxes to columns in a ListView and then figure out how to grab the status of the Checkbox from a specific column?
tia
I attempted instantiating a Checkbox object and then adding the Checkbox to my code that adds subitems to my ListView:
Dim theCheckbox As CheckBox
lSingleItem.SubItems.Add(theCheckbox)
This doesn't work.
How do I add Checkboxes to columns in a ListView and then figure out how to grab the status of the Checkbox from a specific column?
tia