combo box to text fields of a table

  • Thread starter Thread starter a.prasmita
  • Start date Start date
A

a.prasmita

hi all,
iam doing a project and i want to send the data of a unbounded textbox
to different fields of a table based on the value selected from the
combo box. is it possible, please claryfy my doubt
Bobby
 
hi all,
iam doing a project and i want to send the data of a unbounded textbox
to different fields of a table based on the value selected from the
combo box. is it possible, please claryfy my doubt
Bobby

It's certainly possible, but it sounds like a VERY strange way to do
things. What is the structure of your table, and why do you want users
to enter data into one control and have it end up in many places!?

What you would need to do is use the AfterUpdate event of the combo
box, or perhaps a command button, to copy the unbound textbox into a
bound (perhaps invisible) control for the desired field.

John W. Vinson[MVP]
 
Back
Top