Udate a field after a combo box item is selected

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

Guest

Hello all, I have a question, I have a form with a combo box, when the user
is in edit mode and selects a value from the combo box, I need to
automatically update another field in the same reccord. any Idieas on how to
do that with vb script?
 
On the After Update event of your combo box run the update of the other field
like

Private Sub MyComboBox_AfterUpdate()
me.MyOtherField = whateveryouneed
End Sub
 

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