I have a "save" button on my form.
Naturally, I put in a somthing like
If IsNull(Combo117) Then
MsgBox "Please enter Form"
Combo117.SetFocus
Else
name_combo.Requery
End If
in the save_click
It works for every combo box, apart from one of them, it will even save the data as empty. I do not want this. Is there any other way to prevent saving data on a form, where there is an empty field?
Thanks a lot