I need help again.
I've defined a listbox for a dialog using:
CONTROL ADD LISTBOX, hDlg&, %_IDUNITS, , 10, 15, 145, 90, %WS_TABSTOP OR %LBS_DISABLENOSCROLL OR %LBS_USETABSTOPS OR %LBS_NOTIFY OR %WS_VSCROLL OR %WS_BORDER OR %WS_HSCROLL
and I use the LISTBOX ADD statements to add my text strings. My text strings are longer than the width of the listbox, but the horizontal scrollbar which is displayed does not allow any scrolling. It's as if it were disabled. How do I get it to work?
Bernard Ertl
------------------
I've defined a listbox for a dialog using:
CONTROL ADD LISTBOX, hDlg&, %_IDUNITS, , 10, 15, 145, 90, %WS_TABSTOP OR %LBS_DISABLENOSCROLL OR %LBS_USETABSTOPS OR %LBS_NOTIFY OR %WS_VSCROLL OR %WS_BORDER OR %WS_HSCROLL
and I use the LISTBOX ADD statements to add my text strings. My text strings are longer than the width of the listbox, but the horizontal scrollbar which is displayed does not allow any scrolling. It's as if it were disabled. How do I get it to work?
Bernard Ertl
------------------
Comment