views:

266

answers:

2

Is there a way to implement a new column with a header in a checklistbox in vb.net? I've done a bit of searching, but didn't find much on the topic. Should I just abandon the quest and use a listview or some other control?

Thanks for any/all help! JFV

+1  A: 

I would suggest using a ListView with a checkbox column. You'll have better luck.

Nick
Thanks for the confirmation of my suspicions. Better now than run a foolhardy quest! Thanks! -JFV
JFV
A: 

Another alternative is a DataGridView with a checkbox column.

Robert Venables
Another good idea, but I think that the ListView is a better alternative for my data. Thanks! -JFV
JFV