Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var
prnOptions PrinterOptionInfo
strReportName String;// tmp handle to report name
rHandle Report;// tmp handle to report being opened
endVar
;// Print file in Landscape mode
prnOptions.Orientation = prnLandscape
;// Assign report file name
;//
strReportName = "Bonds, Open Details.rsl"
;// Print the report
;//
if NOT rHandle.print(strReportName) then
msgStop("Error opening " + strReportName, "Please make sure the report exists and try again.")
endIf