Need code to use a selection from a combo to update a textbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to use a combo box titled From_Name to automatically update two
text boxes titled From_Phone and From_Fax.

Please help. I know this can be done I just can't get it to work properly.
 
msinigayan said:
I am trying to use a combo box titled From_Name to automatically update two
text boxes titled From_Phone and From_Fax.

Please help. I know this can be done I just can't get it to work properly.

What are you trying? Normally this would be done by having additional hidden
columns in the ComboBox RowSource and then in the AfterUpdate event...

Me.From_Phone = Me.From_Name.Column(1)
Me.From_Fax = Me.From_Name.Column(2)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top