Creating a List Box with No Vertical Scroll BarLast reviewed: November 2, 1995Article ID: Q68115 |
The information in this article applies to:
A Windows list box with the LBS_STANDARD style will display a vertical scroll bar if there are more items in the list than can be displayed in the client area of the list box. To create a list box that will not use a vertical scroll bar, you must remove the WS_VSCROLL bit from the window style. The following style specification removes this bit:
(LBS_STANDARD | LBS_HASSTRINGS) & ~WS_VSCROLL |
Additional reference words: 3.00 3.10 3.50 4.00 95
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |