Es könnte so gehen (nicht ausprobiert):
Delphi-Quellcode:
SetWindowLong(Form1.ClientHandle, GWL_STYLE,
GetWindowLong(Form1.ClientHandle, GWL_STYLE) and (not (WS_HSCROLL or WS_VSCROLL)));
SetWindowPos(Form1.ClientHandle, 0, 0, 0, 0, 0, SWP_FRAMECHANGED or
SWP_NOACTIVATE or SWP_NOMOVE or SWP_NOSIZE or SWP_NOZORDER);
"Form1" durch den Namen des
MDI-Hauptformulars ersetzen.