I have quite a few Combo boxes on a form that are set VISIBLE:NO. I have code that changes them to be visible if a certain choice from another combo box is chosen
here is an example of one:
Everything works fine until going to a new record, the fields that are set to be VISIBLE:NO still show on the form. Is there code that i can add so that the form refreshes and the text or combo boxes go back to there set state of not being visible?
Thanks for any help
Paul
here is an example of one:
Code:
Private Sub CallType_Change()
If CallType.Value = "Other" Then Notes.Visible = True Else Notes.Visible = False
end sub
Everything works fine until going to a new record, the fields that are set to be VISIBLE:NO still show on the form. Is there code that i can add so that the form refreshes and the text or combo boxes go back to there set state of not being visible?
Thanks for any help
Paul