UPDATE TABLE

  • Thread starter Thread starter kuslusr1
  • Start date Start date
K

kuslusr1

I have a form combo box "Combo355" and a form text box "Source". The control
source for the text box is "=Combo355.column(1)". The problem is the text box
"Source", when populated in the form, does not update the table records.
 
Correct, because the Source textbox is not bound to the field in the
underlying table.
Make your Source textbox bound to the field in the table but non-editable on
the form and put the assignment in the after update event of the combo box
Source = Combo355.Column(1)
 
Back
Top