|
-
October 25th, 1999, 11:35 AM
#1
Dialog sizing
Hi !
Is it possible^, for a resizeable Dialog, to fix the minimal size of this Dialog ? How ?
Thanks for your help
Jed
-
October 25th, 1999, 11:37 AM
#2
Re: Dialog sizing
Yes, respond to a WM_GETMINMAXINFO:
void CYourDialog::OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI)
{
lpMMI -> ptMinTrackSize.x = TheMinSizeInX;
lpMMI -> ptMinTrackSize.y = TheMinSizeInY;
}
-- Dominic
-
October 25th, 1999, 11:57 AM
#3
Re: Dialog sizing
Thanks a lot for your quick help
Jed
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|