With this kind of design, I would like to create a functionality with which to add and delete records from the junction table.
The case is from when editing an employee and selecting what exams they can take. In the left list box would be the exams that they aren't eligible for (yet, anyway) and the exams that they are eligible for on the right list box.
The table is something like this:
TABLE EmpExam
(
EmpID,
ExamID
)
The EmpID
would be known at all times, but the ExamID
would be selected from the left list box. Records in the right list box would probably have to have both the EmpID
and the ExamID
in order to be deleted.
Instant deletions/insertions aren't necessary once they're into their respective boxes are not necessary (they can wait until the form is closed).
Is there a good/standard way to accomplish this in Access?