WM_RESIZE - Can Capture in Parent ?
Hi,
I have some child Windows on a view. These are dynamically created in the Views onCreate. I now need to make these child wnds resizeable and handle that but without altering the child windows code.
I can add WS_THICKLINE to the create statements in the view to make them resizeable. I know I can capture the WM_RESIZE msg in each child window and handle it there, but i would rather have the parent capture and handle it for each respective window. Is there a way I can do this, or do I have to capture it in the child and notify the parent ?
Many thanks