How do I refuse to resize if a window is getting too big/small?
-
I guess the title says it all: If I have a resizable window, how can I make it refuse to resize (that is, the cursor can move but it doesn't change the window size) if a window woulde become too small? I know how to detect the last thing, but not how to stop resizing.
-
I guess the title says it all: If I have a resizable window, how can I make it refuse to resize (that is, the cursor can move but it doesn't change the window size) if a window woulde become too small? I know how to detect the last thing, but not how to stop resizing.
Handle WM_SIZING and check the lParam value. If the RECT gets too large or small, change it accordingly. -- Andrew.
-
I guess the title says it all: If I have a resizable window, how can I make it refuse to resize (that is, the cursor can move but it doesn't change the window size) if a window woulde become too small? I know how to detect the last thing, but not how to stop resizing.
Handle the
WM_GETMINMAXINFO
message (CWnd::OnGetMinMaxInfo()).
[
](http://www.canucks.com)"You're obviously a superstar." - Christian Graus about me - 12 Feb '03 "Obviously ??? You're definitely a superstar!!!" mYkel - 21 Jun '04 Within you lies the power for good - Use it!