-
I'm creating my first major VB application. I would like to use a control like a list box, but a list box with several fields. I know exactly what I want actually, open explorer and change the view to details. The file name is listed, file size, created date, etc. This is what I would like. Is there some control to do this?
Thanks.
B
-
Use the columns property of the listbox and set it for as many columns as you want.
-
Thanks Robert. I knew it couldn't be too tough.
-
If after you see how data added to a multi-column listbox snakes through the listbox, you may want to try using a ListView control instead. It's more complex but also much more powerful.