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.
'Capture current default printer
Dim prt As Printer
Set prt = Application.Printer
'Set printer queue to fax
Set Application.Printer = FaxQueueHere
'Open and print report
DoCmd.OpenReport "ReportNameHere"
DoCmd.PrintOut
'Restore original print queue
Set Application.Printer = prt