BikeToWork
Programmer
When a user enters a value in a combo box then deletes the value, the message in the subject line comes up and the user cannot exit the combo box until a non-null value is entered. I've tried to trap the error but have been unsuccessful so far. I tried putting code in the Change event for the combo box:
If IsNull(Me.cboDocID) then
Me.Undo
End if
but the error shows up before the change event. Any help would be most appreciated.
If IsNull(Me.cboDocID) then
Me.Undo
End if
but the error shows up before the change event. Any help would be most appreciated.