Quote:
Originally Posted by cloh
I have a table stored in Access with 2 columns and 9 rows. In my form, I have created 9 textboxes, and I want to display all the values in the 2nd column row by row i.e. txt1 should show row1,column2; txt2 should show row2, column2; txt3 should show row3, column2 etc.
I used the table as the control source but the problem is that EACH textbox shows the first value of the second column - then when I scroll through the record (using the buttons on the bottom left) it changes ALL of the boxes and updates with the 2nd row etc.
Please let me know if this is not clear... I am still new to this. Thanks in advance.
Hi, cloh.
You don't need to have 18 textboxes to display 9 records of 2-field table.
Just create a form with 2 textboxes bound to correspondent table fields. If you want to see records on a grid just set form DefaultView property to DataSheet.
BTW the easiest way to create a form is to choose a table/query and click on [Autoform] button. You will get a form properly linked to the table/query with a full set of controls bound to correspondent table/query fields.
Good luck.