I want to call a child controls unload procedure whenever the Parent is destroying itself.
This brings me to wonder.
I do not handle WM_DESTROY for the parent.
I just handle WM_CLOSE which calls Unload() which calls DestroyWindow(hwnd).
When the unload() runs, it checks to see how many parents windows are still open before PostQuitMessage....
When a parent is destroyed what does it send to the control?
my controls are subclassed, so I have to capture anything???




Reply With Quote