I have been using Access for about a year, but only doing basic relational databases and queries. Now I would like to start expanding my skills to include more functional forms and reports. My first attempt at forms is to create a sign in sheet for an organization's events. I would like to use a table of members to populate a form where the person checking in each member could simply check the checkbox in front of each member's name and have Access automatically add a record in an event_attendance table.
My research so far showed me that I can create the form with all the members listed by changing the form's Default View property to "Continuous Forms". I then can add a checkbox in front of each member's name and view it in "Form View" without any issues. However, checking the checkbox in front of any member's name results in the checkboxes in front of every member's name being checked as well. Is there a way to decouple the checkboxes in a Continuous Form?
After that I'll have to find a way to create a record using that member's information and some information about the event. I assume that will involve adding some VB code to the checkbox's Event > On Click property unless someone knows of an easier way to achieve the same results.