|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
WM_CREATE
The WM_CREATE message is sent when an application requests that a window be
created by calling the CreateWindowEx or CreateWindow function. The window procedure of the new window receives this message after
the window is created, but before the window becomes visible. The message is
sent before the CreateWindowEx or CreateWindow function returns.
WM_CREATE
lpcs = (LPCREATESTRUCT) lParam; // structure with creation data
Parameters
lParam
Value of lParam. Points to a CREATESTRUCT structure that contains information about the window being created. The
members of CREATESTRUCT are identical to the parameters of the CreateWindowEx function.
Return Values
If an application processes this message, it should return 0 to continue
creation of the window. If the application returns 1, the window is destroyed and the CreateWindowEx or CreateWindow function returns a NULL handle.
See Also
CreateWindow, CreateWindowEx, CREATESTRUCT, WM_NCCREATE
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|