TMdiFrame:
1) It seems that the correct default colors for an MDI frame window are
instead of the current
2) We get a better look of the window icon if
is commented out.
TMdiChild:
1) As for TMdiFrame, it is better to comment out
EMG
1) It seems that the correct default colors for an MDI frame window are
nClrFore := GetSysColor( COLOR_WINDOWTEXT ), nClrBack := GetSysColor( COLOR_APPWORKSPACE ),;instead of the current
nClrFore := CLR_BLACK, nClrBack := GetSysColor( COLOR_WINDOW ),;2) We get a better look of the window icon if
SendMessage( ::hWnd, WM_SETICON, 0, oIcon:hIcon )is commented out.
TMdiChild:
1) As for TMdiFrame, it is better to comment out
::SendMsg( WM_SETICON, 0, oIcon:hIcon )EMG