May 26, 2001 #1 ZX188 Technical User Mar 30, 2001 21 US How would I make a field on a form required without setting the required proprities at the table level
How would I make a field on a form required without setting the required proprities at the table level
May 27, 2001 #2 sko Technical User Dec 9, 2000 283 US You could code the Form's Before Update event. If IsNull(YourField) Then MsgBox "Data is required." YourField.SetFocus Cancel = True End If Upvote 0 Downvote
You could code the Form's Before Update event. If IsNull(YourField) Then MsgBox "Data is required." YourField.SetFocus Cancel = True End If