Hi
I want to cascade my child windows.
There is a way to send message to the parent window to cascade all of its
child windows:
lResult = SendMessage( // returns BOOL in lResult
(HWND) hWndControl, // handle to destination control
(UINT) WM_MDICASCADE, // message ID
(WPARAM) wParam, // = (WPARAM) () wParam;
(LPARAM) lParam // = (LPARAM) () lParam;
);
, but if I create windows with Win32::GUI this procedure doesn't work,
because the child windows aren't MDI windows.
The question is: Can I create MDI windows with Win32::GUI?
Thanks
Gabor
|