I'm working on a project in Access 2010 where I am creating a form with a subform. On the side of my form I have a Listbox control which I would like to update with the FirstName of person information records entered into my subform. Additionally I would like the Listbox to be clickable for easy navigation of my users so they can simply click on a persons name and have it load the record into the subform. Is there an easy way to accomplish this, or am I doomed to use VBA? If so I would really like some assistance. Sample code would be a life saver.
To provide some context, here are some sample tables:
Families (ID, LastName, HomeAddress, City, State, Zip)
People (ID, FirstName, FamilyID, Phone, Email)
Requirements:
- The Listbox called "All Members" should display all family members for the current
FamilyID - Should auto-update upon each newly added family member
- Should load the subform upon clicking a
FirstNamewith that person's data
Here are some pictures of the Form/Subform & select Properties to help with understanding my goals :)


For the last several hours I've been trying to find an answer for this prior to coming here. You will help me more than you know. Thank you so much to whoever can help me solve this question ;)