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.
Public Function Access_Path() As String
Access_Path = Path(Access.References(2).FullPath) & "MSAccess.exe"
End Function
Private Function Path(ByVal strFilePath As String) As String
Dim intLastSlash As Integer
Dim pntr As Integer: pntr = 1
intLastSlash = InStrRev(strFilePath, "\")
Path = Left(strFilePath, Len(strFilePath) - (Len(strFilePath) - intLastSlash))
End Function