Article ID: 11365
Article Last Modified on 7/11/2005
LBS_NOTIFY | LBS_SORT | WS_BORDER | LBS_STANDARDthe following results (as defined in WINDOWS.H):
LBS_STANDARD = #00A00003;
/* LBS_NOTIFY | LBS_SORT | WS_VSCROLL | WS_BORDER */
To create a dialog box that contains a list box without the vertical scroll
bar, use NOT WS_VSCROLL as the style for creating a list box control
without a vertical scroll bar, as follows:
(LBS_STANDARD & ~WS_VSCROLL) // NOT WS_VSCROLL
Keywords: kbhowto kblistbox kbctrl KB11365