Udate a field after a combo box item is selected

D

David Mansilla

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?
 
J

jl5000

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
 
Top