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)
 

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