I'm working with three tables: tblclient, tblclass, tblstudent.
tblclient is linked one-to-many to tblclass.
tblassessment is linked one-to-many to tblstudent.
I've got three forms: frmclient, frmclass, frmstudent.
What I'd like is when the client opens frmstudent, he must enter the primary key for a record in tblclass. In this way, the data entered on frmstudent will be linked directly to that specific record on tblclass. What would be ideal is to enable the user to select a clientname/classdate (from tblclient and tblclass, respectively), rather than have to remember what the tblclass PK he wants is, but I'll settle for the latter at this point!
I can't set up tblstudent as a subform on frmclass because I need to use option groups for some of the fields. It works best if I use a separate form for tblstudent data entry.
Thanks, in advance, for your help.