Listbox Colum

skaboufar

New member
Joined
Mar 30, 2007
Messages
4
Programming Experience
Beginner
Hi

How to i add an extra colum to my listbox, or should i use something else than listbox.?

BR
 
The ListBox control doesn't support tabular display. It has a Multicolumn property but all that does is make the single list of items overflow horizontally rather than vertically. If you do that there is still no concept of a row in the control, because there's still no correspondence between the items. If you wer to insert an new item the relative positions would change completey.

For a tabular display you would normally use a DataGridView or perhaps a ListView in Details view.
 
Back
Top