Did you look over the VB and Access Thread? In the listbox's on_Click event, you would initiate another query, searching for whatever data you need, and placing the retrieved info into the new text fields (or wherever).
Here is the link: http://www.daniweb.com/techtalkforums/thread26892.html
Comatose
Taboo Programmer
2,910 posts since Dec 2004
Reputation Points: 361
Solved Threads: 215
Well you can get the listbox entry with:
listboxname.list(listboxname.listindex)
So, if for example, you had a listbox named "list1", you could get the highlight item in the list, and save it to a variable named lstdata by saying:
lstdata = list1.list(list1.listindex)
Or am I confused on exactly what you are having trouble with?
Comatose
Taboo Programmer
2,910 posts since Dec 2004
Reputation Points: 361
Solved Threads: 215