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.
'General Declarations
Dim crxApp As New CRAXDRT.Application
Dim crxRpt As CRAXDRT.Report
Private Sub Form_Load()
'Open the report
Set crxRpt = crxApp.OpenReport(App.Path & "\Reports\Profile.rpt")
'Clear any saved data to force to report to read from the db
crxRpt.DiscardSavedData
'Set login information for the report here, if necessary
'View the report
CRViewer.ReportSource = crxRpt
CRViewer.ViewReport