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