ListBox column header

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to add a column header to the ListBox control that comes in
VB.NET 2003 and how if possible at all?

Thanks
 
Hi,

The list box doesn't work like that. You can either (1) use a ListView,
natively supporting the concept of a column or (2) create a new user
control, put a list box onto it and draw in a column header.




Robin
 
Thanks for the info. It helps a lot. Somehow I was under the impression that
one could have a column header on the top of the list box.
 
Back
Top