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.
Private Sub CRViewer_PrintButtonClicked(UseDefault As Boolean)
UseDefault = False
'Invoke the Printer Setup dialog
crxRpt.PrinterSetup Me.hWnd
Dim p As Printer
For Each p In Printers
If p.DeviceName = crxRpt.PrinterName Then
crxRpt.SelectPrinter p.DriverName, p.DeviceName, p.Port
Exit For
End If
Next p
crxRpt.PrintOut True, 1
End Sub