Thansk!! I wish get the handle of mdi child in the clientWndProc, using WM_MDICREATE message
procedure TFrmMain.ClientWndProc(var Message: TMessage);
var
Hwnd : HWND;
procedure Default;
begin
with Message do
Result := CallWindowProc(FClientWndProc, ClientHandle, Msg, wParam, lParam);
end;
begin
case Message.Msg of
WM_MDICREATE:
begin
hwnd := Message.LParam; //dont' work
hwnd := TWMMDICreate(Message).MDICreateStruct^.lparam; //don't work
Default;
end;
end;
inherited ClientWndProc(Message);
end;
I want Bind the next proceddure (ChildProc) when started a MDICHILD, into the ClientWndProc Procedure of MainForm
function childProc(hwnd: HWND; msg, wParam,lParam: LongInt): LongInt; stdcall;
begin
if msg = WM_SYSCOMMAND then
begin
CallWindowProc(p,hwnd,msg,wparam,lparam);
if WParam = SC_MINIMIZE then
//do something
end;
result := CallWindowProc(p,hwnd,msg,wparam,lparam);
end;
I need the handle of new chid form ,Something like that
P := Pointer(SetWindowLong(ActiveMDIChild.Handle, GWL_WNDPROC, integer(@Child)));