CFormView derived non-resizeable
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
I am currently writing an MDI app', with views based upon the CFormView. Could someone kindly let me know how I can set these formViews so that they are non -resizeable? Thanks.
Add a handler to
WM_GETMINMAXINFO
and set theptMinTrackSize
andptMaxTrackSize
members of theMINMAXINFO
structure to your desired size. I think that's what I've used in the past, anyway.