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.
Function MakeNewReport()
Dim rpt As Report
Dim strOldName, strNewName As String
strNewName = "GingerReport"
Set rpt = CreateReport
DoCmd.Restore
strOldName = rpt.Name
DoCmd.Save acReport, strOldName
DoCmd.Close acReport, strOldName, acSaveNo
DoCmd.Rename strNewName, acReport, strOldName
End Function