Combox populated by current recordset / attendance
I have a main form that is for entering data for an Event. Included in the form are two separate subforms. One is for Employee attendance and is a continuous form with a combobox that is populated by a query to the employee table. The second subform is for recording scores for the event. It is also a continuous form with a combobox that currently is populated exactly as the combobox for the attendance subform. Both subforms are linked to the main form by the EventID.
What I want to do is have the combobox in the scoring subform query only the employees that were entered as attending the Event that is being entered.
The tables are as follows:
Event
--------
EventID (pk)
Employees
------------
EmployeeID (pk)
EventAttendance jx table
-----------
EventID
EmployeeID
EventScores
EventScoresID (pk)
EventID(fk)
I do not know how to query the current recordset on the form. Thanks for your time.
Happy New Year!