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 Form_Error(DataErr As Integer, Response As
Integer)
Dim Message As String
If DataErr = 3022 Then 'Duplicate value entered
Message = "That requisition number already exists."
Response = MsgBox(Message, vbExclamation, "Registration Number Exists!")
Response = acDataErrContinue
End If
End Sub