
Originally Posted by
rpeare
I do not understand what you are asking. You only have one combo box on your form 'Test'. That combo box is a class. in the after update of that combo box you have some recordset cloning going on which I do not think you need.
What are you trying to accomplish.
Are you trying to bring up the grades for the listed student whenever someone changes the class?
Or are you trying to do something else?
Your database construction is not good which may also be hampering you.
You should have:
A table for your students
A table for the classes available (any class available at the school/temple/mosque)
A table that lists the classes a student took (holds the FK of the student table and the FK of the classes table and has a PK of it's own)
A table that stores the grades for each one of the tests taken in that class
this is at the very least.
Your structure is forcing each student to have one class only which I doubt is your intent.