Hi !
Is it possible^, for a resizeable Dialog, to fix the minimal size of this Dialog ? How ?
Thanks for your help
Jed
Printable View
Hi !
Is it possible^, for a resizeable Dialog, to fix the minimal size of this Dialog ? How ?
Thanks for your help
Jed
Yes, respond to a WM_GETMINMAXINFO:
void CYourDialog::OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI)
{
lpMMI -> ptMinTrackSize.x = TheMinSizeInX;
lpMMI -> ptMinTrackSize.y = TheMinSizeInY;
}
-- Dominic
Thanks a lot for your quick help
Jed