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.
Sub OutputSnapshot()
DoCmd.OutputTo acOutputReport, "Alphabetical List of Products", acFormatSNP, "C:\My Documents\", True
End Sub
Sub OutputSnapshot()
Dim myFile as String
myFile = "SomeName" & Format(Date(),"mmddyy") & ".snp"
DoCmd.OutputTo acOutputReport, "Alphabetical List of Products", acFormatSNP, "C:\My Documents\"[blue] & myFile[/blue], True
End Sub