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.
'Create a viewer object and view the report
Set Viewer = CreateObject("CrystalReports.CrystalReportInteractiveViewer")
With Viewer
.ReportSource = ReportSource
.HasBooleanSearchButton = True
.HasCrystalLogo = True
.EnableBooleanSearch = True
.HasExportButton = True
.IsDisplayGroupTree = False
.ShowAdvSearchConditionsTab = True
.ShowAdvSearchFieldsTab = True
.Name = "interactiveViewerName"
.HasHelpButton = False
.AdvSearchShowFields = showFields
.IsOwnPage = True
End With