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 NameOfControl_MouseUp(Button_
As Integer,_
Shift As Integer, X As Single, Y As Single)
Dim stDocName As String
Dim stLinkCriteria As String
Dim theanswer As String
On Error Resume Next
DoCmd.Beep
theanswer = InputBox("Temporarily_
access to editing raw data will be_
limited. Therefore, Please Enter Password")
If theanswer = "purplepeopleeater" Then
stDocName = "NameOfFormToPassword"
DoCmd.OpenForm stDocName, , , stLinkCriteria,_
acFormEdit
Else
'Answer incorrect
DoCmd.CancelEvent
DoCmd.Beep
MsgBox "Password Incorrect"
End If
End Sub