I've got 3 windows created with CreateWindowEx and they are all on top of each other:
I'm trying to resize them on the WM_SIZE message so that dragging the main window or maximizing the main window resizes the 3 child windows maintaining the first windows X/Y position and increasing the height proportionately with the second window being directly below with the same height of 5 with the third window directly below that but its height changing proportionately as well while maintaining the space below the third that accommodates the status bar but Ive got a bit of brain drain going on so can anyone help? The user can resize window one and three by scrolling window two and that works OK but its doing that which has thrown me off the main window resizing.
Code:
Main W = 610 Main H = 380 X Y W H 10 45 590 200 10 245 590 5 --Splitter 10 250 590 100
Comment