comparison win/dw.c @ 104:2892fe8a023e

For multiple select listboxes on windows use the multiple select style not the extended select.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 24 Aug 2002 07:51:46 +0000
parents 372a7581b312
children ad95fc623ff3
comparison
equal deleted inserted replaced
103:babc1ea53d79 104:2892fe8a023e
4146 { 4146 {
4147 HWND tmp = CreateWindow(LISTBOXCLASSNAME, 4147 HWND tmp = CreateWindow(LISTBOXCLASSNAME,
4148 "", 4148 "",
4149 LBS_NOINTEGRALHEIGHT | WS_CHILD | LBS_HASSTRINGS | 4149 LBS_NOINTEGRALHEIGHT | WS_CHILD | LBS_HASSTRINGS |
4150 LBS_NOTIFY | WS_BORDER | WS_CLIPCHILDREN | 4150 LBS_NOTIFY | WS_BORDER | WS_CLIPCHILDREN |
4151 WS_VSCROLL | (multi ? LBS_EXTENDEDSEL : 0) , 4151 WS_VSCROLL | (multi ? LBS_MULTIPLESEL : 0) ,
4152 0,0,2000,1000, 4152 0,0,2000,1000,
4153 DW_HWND_OBJECT, 4153 DW_HWND_OBJECT,
4154 NULL, 4154 NULL,
4155 NULL, 4155 NULL,
4156 NULL); 4156 NULL);