Hello!
I have a query that joins two tables in my Access 97 database:
The query works as expected, associating the correct Table2.E with the rows in Table 1.
I used to the Access form wizard to create a form around this query, and that works correctly, if I manually enter Table2.E into the genereated textbox everything appears to be updated correctly. If I convert the text box into a comb box however, things stop working.
I can select the correct Table2.E text from the combo box and it updates the Table1.C value as expected. If I view the next record, and then view the previous record, the first text item in the combo box is overwritten with whatever I had selected previously. This change also appears in the database table.
For example, in Table2:
If I select Other from the combo box, view the next record and comeback, the combo box will display Other, but if I view the drop down my choices will by Other, Else, Other, and Table 2 will look like:
Any idea how to fix this?
Thanks
I have a query that joins two tables in my Access 97 database:
Code:
SELECT Table1.A, Table1.B, Table1.C, Table2.E FROM Table2 INNER JOIN Table1 on Table2.D = Table1.C;
I used to the Access form wizard to create a form around this query, and that works correctly, if I manually enter Table2.E into the genereated textbox everything appears to be updated correctly. If I convert the text box into a comb box however, things stop working.
I can select the correct Table2.E text from the combo box and it updates the Table1.C value as expected. If I view the next record, and then view the previous record, the first text item in the combo box is overwritten with whatever I had selected previously. This change also appears in the database table.
For example, in Table2:
Code:
D E 1 Something 2 Else 3 Other
Code:
D E 1 Other 2 Else 3 Other
Thanks
Comment