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)
 
Back
Top