Hi. You can use the Form's BeforeUpdate event and check for empty/required input. For example:
Code:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If IsNull(Me.Surname) Then
MsgBox "You must enter the surname.", vbCritical,"Required"
Cancel=True
End If
End Sub