Having text boxes bound is the best solution but it causes a problem with storage of data from a combo box and I am looking for a simple solution, here is the description
My application includes the following:
1. The same split form as previously described
2. several textboxes
3. Combo box
table_1 includes town_name, town_id
table_2 includes col1,col2,town_id
all of the controls are bound to a query which does a join of table_1 and table_2 so the output of the query includes all of the columns in table_2 and the columns in table_1.
my goal is that the controls on the form show data from table_2 and the combo box shows town_name (from table_1) when I click on the combo box I want to be able to see all town names from table_1 and select a town by name, when the record is saved I need the town_id which corresponds to what is selected on the combo box to be saved in table_2. the problem that I am having now is that it saves town_name that is selected in table_1.