Well basically what I have is a table with all of the student information (first name, last name, classroom, etc) and then how they had it set up was a query for each classroom, taking information from the student info table based on the teacher.
Two other tables, an incident report table and a point sheet table. Each of these will have entries with a reference to the student, plus some other information the staff will type in. The foreign key in these two tables is linked to the primary key of the student information table. So I believe this would be a one to many relationship..
Unfortunatly all of my database experience has been using asp with sql server, so I'm struggling to get access to do what I want.
I have a form where you select a student from a combo box. I am currently attempting to change it to where you first select a class, and then select a student from that class so I don't need a form per class.
On the form are 2 subforms, one for the point sheet table and one for the incident report table. Currently, the subforms have all of the records relating to the student who is selected in the outer form, and you can add more entries at the end of the subform.
Ideally, for the incident report subform I'd like to click a button, it brings up a window where someone can enter in the information, and then click ok and it adds a new entry. Right now, all of the old entries are there too, and I'm afraid it is a little bit comfusing to have to get to a new record to add info. (A lot of the people who will be using this database will have 0 computer experience)
Eventually I also want a form that displays selected entries in the to subform tables.
This will be sitting on a network.
Thanks!