G
Guest
Is it possible to set an After Update on my combo box for 2 things. I have a
form with a combo box of Client names from my Clients table. It's set up to
update the Client ID field after selecting the Client name.
Private Sub ClientNameCombo_AfterUpdate()
IDLookup = ClientNameCombo.Column(1)
End Sub
I need another combo box (actually I'm going to allow 10 entries of this) on
my form listing items from my Inventory table, but I would like to limit the
records to only the ones with that Client ID. I get an error when I add
another "After Update". I'm not sure if this isn't allowed or if I have a
syntax error. It will also follow that later in my Lots subform I will only
want to list the Inventory items selected above. Is this possible? If so,
how. Any help would be appreciated.
-- Cheryl
form with a combo box of Client names from my Clients table. It's set up to
update the Client ID field after selecting the Client name.
Private Sub ClientNameCombo_AfterUpdate()
IDLookup = ClientNameCombo.Column(1)
End Sub
I need another combo box (actually I'm going to allow 10 entries of this) on
my form listing items from my Inventory table, but I would like to limit the
records to only the ones with that Client ID. I get an error when I add
another "After Update". I'm not sure if this isn't allowed or if I have a
syntax error. It will also follow that later in my Lots subform I will only
want to list the Inventory items selected above. Is this possible? If so,
how. Any help would be appreciated.
-- Cheryl