WM_CREATE
-
Ich versuche, dass über CreateWindowEx bei der Erstellung eines Fensters lParam einen bestimmten Wert erhält, den WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) dann bei WM_CREATE abfragt.
Ich glaub irgendwo gelesen zu haben, dass das gehen soll, bekomme es aber einfach nicht hin. (Ich hoffe, ich hab mich nicht verlesen)
Und wenn es hier keine Möglichkeit geben sollte: Es ist mir nur wichtig, einen beliebigen Wert in die WndProc bei WM_CREATE "einzuschleusen".Danke schonmal,
Gruß Streusselkuchen
-
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 dataParameters
lParam
Value of lParam. Pointer 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.QuickInfo
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Requires version 1.0 or later.
Header: Declared in winuser.h.Programmierst du ohne MSDN.
