Page 1 of 1

oBrw:Report setup SETPORTRAIT

PostPosted: Tue Nov 16, 2021 1:04 pm
by Silvio.Falconi
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 ?