Setting MDI child Window's Size
-
could anyone tell me how to set min/max size of an child view in MDI Applications? Thanks F.Dost
handle the OnSize() message --- "every year we invent better idiot proof systems and every year they invent better idiots"
-
could anyone tell me how to set min/max size of an child view in MDI Applications? Thanks F.Dost
Handle the WM_GETMINMAXINFO message, where you tell Windows the min/max sizes of your windows. --Mike-- http://home.inreach.com/mdunn/ The Signature, back by popular demand: Buffy. Pajamas.
-
Handle the WM_GETMINMAXINFO message, where you tell Windows the min/max sizes of your windows. --Mike-- http://home.inreach.com/mdunn/ The Signature, back by popular demand: Buffy. Pajamas.
Thanks for your help but, I did overwrite OnSize() setting cx and cy to what i want but it was ignored, i used it before and after the default call, i don't know what to do with WM_GETMINMAXINFO, i can't see it in classwizard, need more detail... Thanks F.Dost