I need to develop a form to allow me to create relationships between people and events (like a class).

My question is this: What form controls work best for this?

As an example, I have tables called People, Events, and Event_Link. The Event_Link table uses the primary keys of the People and Event tables as foreign keys. Simple enough.

In my form, I would like the user to be able to select an event, then somehow see a list of all people in the database and select those who are signed up for the event.



In ASP.NET, I would use a gridview control to accomplish this, but I can't find an equivalent in Access. The database templates are helpful but tend to be simplistic in their underlying database structures.

Thanks,
Josh