Link to home
Start Free TrialLog in
Avatar of bor061297
bor061297

asked on

TListBox and ScroolBars

How to make a ListBox with horizontal ScrollBar,
and how to make ListBox without any ScroolBars?
Avatar of bsimser
bsimser

If you make a listbox and the items are wider than the listbox, it will automatically scroll horizontally for you. As for making a listbox without scrollbars, you won't see any scrollbars if your items don't exceed the height of the listbox. If you want to make a listbox not scroll, set the Style property to lbOwnerDrawFixed or lbOwnerDrawVariable and override the paint method to draw your items.
ASKER CERTIFIED SOLUTION
Avatar of ronit051397
ronit051397

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial