Thread Style-Makros (WS_CHILD, WS_VISDILE, etc.): -style Option in Win32::GUI (3 answers)
Opened by Gast at 2003-11-26 02:21

esskar
 2003-11-26 02:56
#45854 #45854
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#define LBS_NOTIFY            0x0001L
#define LBS_SORT 0x0002L
#define LBS_NOREDRAW 0x0004L
#define LBS_MULTIPLESEL 0x0008L
#define LBS_OWNERDRAWFIXED 0x0010L
#define LBS_OWNERDRAWVARIABLE 0x0020L
#define LBS_HASSTRINGS 0x0040L
#define LBS_USETABSTOPS 0x0080L
#define LBS_NOINTEGRALHEIGHT 0x0100L
#define LBS_MULTICOLUMN 0x0200L
#define LBS_WANTKEYBOARDINPUT 0x0400L
#define LBS_EXTENDEDSEL 0x0800L
#define LBS_DISABLENOSCROLL 0x1000L
#define LBS_NODATA 0x2000L
#if(WINVER >= 0x0400)
#define LBS_NOSEL 0x4000L
#endif /* WINVER >= 0x0400 */
#define LBS_STANDARD (LBS_NOTIFY | LBS_SORT | WS_VSCROLL | WS_BORDER)


steht in WinUser.h

kannst dir den .NET Framework SDK runterladen... oder das alte Microsoft SDK...
oder gibt es die datei in einem der include verzeichnisse

View full thread Style-Makros (WS_CHILD, WS_VISDILE, etc.): -style Option in Win32::GUI