I have another question. For the purposes of this question, I have three tables:
Students
Guardians
Students and Guardians
Students has ID, First Name, Last Name
Guardians has ID, First Name, Last Name
Students and Guardians has Student (Primary Key, linked to Students -> ID), Guardian ID (Primary Key, linked to Guardians -> ID), Relationship (Combo box with values like mother, father, etc), Lives With Child (Yes/No box) and Emergency Contact (Yes/No box)
Now I also have four forms
StudentsAdd
StudentsView
GuardiansAdd
GuardiansView
Students forms are identical with the same fields as the tables, but StudentsView is set to Modal->No and has Next record, previous record buttons. StudentsAdd is set to Modal->Yes and has save record, cancel record buttons.
Guardians forms are the same.
Ok, so here's the question. I want to link the information in the Students and Guardians table to the GuardiansView form.
Specifically,
In StudentsView, I want a text box showing all guardians listed in the Students and Guardians table as having a relationship with that student. I want to see the relationship text box as well as the two yes/no fields.
In GuardianView, I want a text box showing the student listed in the Students and Guardians table as having a relationship with that guardian. Again, I want to see the relationship text box as well as the two yes/no fields.
Thanks for any help you might have!