the user can select lLandscape for the orientation of report
oBrw:Report( 'Test', , , ;
{ |oRep, oBrw | MySetUp( oRep, oBrw, lLandscape ) } )
MySetUp( oRep, oBrw, lLandscape )
If lLandscape
oRep:SetLanscape()
Else
oRep:SetPortrait()
endif
return nil
How I can make to set the orientation of Report ?