L
Lars Brownies
I have code something like:
Select case fldMyField
Case "All records":
´other code
Case "This employee:
´other code
Case Null: msgbox "This field can't be empty"
Cancel = True
End Select
The case null statement to test if the field is empty is not working.
if isNull(fldMyField) does work
Why doesn't the case Null statement work? What would be the best way to do
this?
Thanks,
Lars
Select case fldMyField
Case "All records":
´other code
Case "This employee:
´other code
Case Null: msgbox "This field can't be empty"
Cancel = True
End Select
The case null statement to test if the field is empty is not working.
if isNull(fldMyField) does work
Why doesn't the case Null statement work? What would be the best way to do
this?
Thanks,
Lars