G
Guest
Okay, I got my combo boxes to be limited by what is entered in another and
used the following code:
Private Sub Insurance_Company_AfterUpdate()
Me.Insurance_Contact = Null
Me.Insurance_Contact.Requery
Me.Insurance_Contact = Me.Insurance_Contact.ItemData(0)
End Sub
Problem--It works, except when I choose a value in the first combo box (the
one that limits the others), the others fill in with the first value instead
of remaining blank. I want them to stay blank until I click on them...
used the following code:
Private Sub Insurance_Company_AfterUpdate()
Me.Insurance_Contact = Null
Me.Insurance_Contact.Requery
Me.Insurance_Contact = Me.Insurance_Contact.ItemData(0)
End Sub
Problem--It works, except when I choose a value in the first combo box (the
one that limits the others), the others fill in with the first value instead
of remaining blank. I want them to stay blank until I click on them...