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 CmdViewLogfile_Click()
Dim dbName As String
Dim dbPath As String
dbName = Me.Application.CurrentDb.Name
dbPath = Left(dbName, InStrRev(dbName, "\"))
Retval = Shell("Notepad.exe" & dbPath & "TextFileName", 1)
AppActivate Retval
End Sub