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 txtData_BeforeUpdate(Cancel As Integer)
If Me.txtData <= 100 Then
MsgBox "Please enter a value > 100!"
Cancel = True
End If
End Sub
Private Sub Aircraft_Registration_BeforeUpdate(Cancel As Integer)
If Not (Len(Value) = 3 And Left$(Value, 1) = "v") Then
MsgBox "Aircraft registration must start with a V...", vbExclamation, "Invalid data..."
Else
'Save value
End If
End Sub