I found that SetWindowPos(...hwnd...) function will not generate WM_SIZE message if the new size is the same as before. But sometimes I need SetWindowPos to generate WM_SIZE message even if the size is not changed. Although I can use SendMessage(hwnd, WM_SIZE...) after SetWindowPos, but this is a bad solution, since it may generate WM_SIZE twice.
So,
Is any flag for SetWindowPos or any similar functions so a WM_SIZE message is always generated?
ps:
I have a main window hwndMain, a child window hwndChild and a child window hwndChild2 of hwndChild. When hwndMain is resized, it receives WM_SIZE, and there is a MainOnSize(...) function that resize hwndChild. Similarly, if hwndChild is resized, it receives WM_SIZE and there is a ChildOnSize(...) function that resize hwndChild2.
But it comes the case: After hwndMain and hwndChild are created, but not hwndChild2, hwndMain receives WM_SIZE, so hwndMain and hwndChild are resized. Now after hwndChild2 is created, hwndMain still receives a WM_SIZE (see Remark), so it calls MainOnSize to resize hwndChild. But the size of hwndChild is not changed, so it doesn't generate WM_SIZE, and it doesn't call ChildOnsize(), hence hwndChild2 is not resized.
Remark:
The first time hwndMain receives WM_SIZE is when it is created, and the second time is when it is shown by using ShowWindow(...).
WM_SIZEto be called when the size hasn't changed then you are doing it wrong... What is it that you are actually trying to do that would need this? – K-ballo Dec 29 '12 at 23:19hwndChild2is created using the wrong location and dimension. As soon as you create a properly sized window in the right location your problem is gone. To do so handle theWM_CREATEmessage and modify theCREATESTRUCTas required. It has anhwndParentmember so you can access the owning window and retrieve its size and location. This should be all there is to it. – Tim Dec 30 '12 at 1:18