HI,
If I want to prevent my user from navigating (using the default buttons) to the next record until they have entered a date into the field 'Registrationdate', what do I need to do other than using the code below, which is fine for an initial prompt, but obviosly won't stop them going to the next record'
Thanks,
Andrew.
If I want to prevent my user from navigating (using the default buttons) to the next record until they have entered a date into the field 'Registrationdate', what do I need to do other than using the code below, which is fine for an initial prompt, but obviosly won't stop them going to the next record'
Code:
Private Sub Registrationdate_LostFocus()
If IsNull(Me.Registrationdate) Then
MsgBox "Please enter a Registration Date for this client"
End If
End Sub
Thanks,
Andrew.