Aargh! Can't understand why this doesn't work! I have a procedure that displays the values selected from 4 combo boxes in one line, but if the user deletes a value or it is blank (value not yet selected in the combobox), I get "invalid use of null". So I put
If IsNull (Mycombo) Then
Mycombo=" "
Endif
in the OnEnter, OnLostFocus, OnChange...whatever I could, but it just does not like empty values! So now when I want to go to a new record (and of course all values are blank) I get the same error message over and over. How can I solve this?
If IsNull (Mycombo) Then
Mycombo=" "
Endif
in the OnEnter, OnLostFocus, OnChange...whatever I could, but it just does not like empty values! So now when I want to go to a new record (and of course all values are blank) I get the same error message over and over. How can I solve this?