1. how can i check for null entry in a combo box of a data entry form so as to prompt the user to enter a value in it?
2. what about checking for any null entries in all the controls of a form?
i've tried setting the fields of the underlying table to 'Required' but i received a error message that requires me to debug 'Me.Refresh'
Private Sub Combo_AfterUpdate()
' Convert to uppercase and refresh.
Me!Combo = UCase(Me!Combo)
Me.Refresh
End Sub
2. what about checking for any null entries in all the controls of a form?
i've tried setting the fields of the underlying table to 'Required' but i received a error message that requires me to debug 'Me.Refresh'
Private Sub Combo_AfterUpdate()
' Convert to uppercase and refresh.
Me!Combo = UCase(Me!Combo)
Me.Refresh
End Sub