If Me.TelephoneNo & "" = "" Then
Dialog.Box "Please enter a Customer Telephone Number!", vbCritical, "Data entry error..."
Me.TelephoneNo.BorderColor = vbRed
Me.TelephoneNo.SetFocus
Cancel = True ''' this is how you stop the save
Exit Sub
Else
If Len(Me.TelephoneNo) < 10 Then
..... 'simimlar to above
End If
End If[/CODE