how do you add columns and header to checklistbox control?

  • Thread starter Thread starter comic_rage
  • Start date Start date
C

comic_rage

Hi,

I created a checkListBox to allow the user to select and place a check
next to multiple items in the GUI. I would like to add a 2 column where
the first column show the description of the item and the second column
show the version.

How can I create 2 columns with a checkListBox?
How can I add a header above the 2 columns to show item | version?


Any help is greatly appreciated,

Thanks,

CR
 
Perhaps you can try the ListView control with checkbox enabled.

If you still want to use the CheckedListBox, set MultiColumn to true with
appropriate column width and control height. However, headers cannot be
added.

Hi,

I created a checkListBox to allow the user to select and place a check
next to multiple items in the GUI. I would like to add a 2 column where
the first column show the description of the item and the second column
show the version.

How can I create 2 columns with a checkListBox?
How can I add a header above the 2 columns to show item | version?


Any help is greatly appreciated,

Thanks,

CR
 
Back
Top