Kind of get the idea, but that's not what I want to happen.
1. A listbox is populated from a query of tableB/tableC. (This is working)
2. Textboxes are empty by default, enter info into tableA when user types into them, clicks save record.
(This is working)
3. Instead of user manually entering info into the textboxes that feed tableA, I want to take the value from column1 of listbox, put it into textbox1, take value of column2 of listbox, put it into textbox2, and so on when the user clicks on that row in the listbox. Then when user clicks save, the values of the textboxes are entered into tableA.
(Right now, when I click on row in listbox that is populated from tables B and C, it looks for matching record in table A to pull into the textboxes, which doesn't exist. I want to take values in list box, put them into textboxes, then save those into tableA.
So, listbox is populated from query of tableB/tableC, textboxes populate from listbox, then populate tableA.
Thanks for your help.