Marco,
like You can see in the Include-file, I think it is not possible on MDI-frame.
Instead, to show just a empty Screen, You can use a Dialog like :
DEFINE IMAGE oTmp FILENAME c_Path + "\bitmaps\Backgrd.jpg"
DEFINE DIALOG oDlg FROM 0, 0 TO 720, 1004 PIXEL ; // TRANSPARENT ;
STYLE WS_POPUP | WS_VISIBLE // | WS_DLGFRAME | WS_THICKFRAME // Frame disabled
oBrush1 := TBrush():new( ,,,, ResizeBmp( oTmp:hBitmap, 1004, 720, .T. ) )
oDlg:Setbrush( oBrush1 )
oTmp:End()All Dialogs on Top of to the Main-dialog will need :
...
DEFINE DIALOG oDlg1 FROM 90, 60 TO 390, 500 PIXEL
...
...
ACTIVATE DIALOG oDlg1
NOWAIT ;
...
You can have a look at the new Image-viewer, how to use it.
The Include-section for MDI-windows from Fivewin.ch ( only Border defined ) :
#xcommand DEFINE WINDOW <oWnd> ;
[ FROM <nTop>, <nLeft> TO <nBottom>, <nRight> ] ;
[ TITLE <cTitle> ] ;
[ STYLE <nStyle> ] ;
[ MENU <oMenu> ] ;
[ BRUSH <oBrush> ] ;
[ ICON <oIcon> ] ;
[ MDI ] ;[ <color: COLOR, COLORS> <nClrFore> [,<nClrBack>] ] ;
[ <vScroll: VSCROLL, VERTICAL SCROLL> ] ;
[ <hScroll: HSCROLL, HORIZONTAL SCROLL> ] ;
[ MENUINFO <nMenuInfo> ] ;
[ [ BORDER ] <border: NONE, SINGLE> ] ;
[ OF <oParent> ] ;
[ <pixel: PIXEL> ] ;
Best Regards
Uwe