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 Sub ReEnableByPassKeyProperty(StrDBPath As String)
Dim WS As Workspace
Dim db As Database
Set WS = Workspaces(0)
Set db = WS.OpenDatabase(StrDBPath)
db.Properties.Delete "AllowByPassKey"
db.Properties.Refresh
End Sub