How do you disable the Maximize button/capability in an SDI application?
+1
A:
For completeness:
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
ModifyStyle(WS_MAXIMIZEBOX, 0);
<etc...>
}
Roel
2009-05-25 11:41:12
I prefer this to an external link that could be broken in the future.
Aidan Ryan
2009-05-25 17:00:49