Hi all,
I am still new to access, and even newer to VBA so I'll try and explain this the best I can.
I'm creating a conference scheduling tool for work that is going to track upcoming conferences, how many days the conference is, guest lists, speakers, etc. A fairly large undertaking for me being a newbie.
I have a form (frm_Create_Conference) created from my table (tbl_Conference_Main). The table has a bunch of combo boxes that are yes/no boxes (they don't like the checkboxes) that are meant to identify what has and has not been done (i.e. has the room been reserved? is the agenda complete? do we have agenda slides? etc.).
What I did when I created the frm_Create_Conference is I created a separate popup form called frm_Conference_Checklist. I hadoriginallycreated one big form with all the information on it, but I needed more space for the subform. I experimented with hiding the information and allowing the user to toggle this on or off, but it just didn't look that great. So what I did instead was I created the checklist form, taking the formatted sections of checklist yes/no questions, and putting that into its own form (again, frm_Conference_Checklist). I set the record source on said form to tbl_Conference_Main given that that is the location where all the information was born, but it does not want to link up. Everything is linked up correctly in the Relationships, and everything was working, obviously, when the checklist boxes were still part of the frm_Create_Conference form, but now I'm stuck.
I have three sample conferences in there. On the first one, I clicked the popup form, entered "Yes" for all the fields (there are 34 yes/no boxes), and saved. I checked the table, it works perfectly. I close that form.
I navigate to the second record and click the popup form and it opens the same form I'd just closed, meaning it is starting at what is essentially record 1 of that form.
TL;DR, how do I link my popup form, whereby all the information was taken from the same originating table, to my main form because the Record Source link to the table doesn't seem to be working. Is there an Event that needs VBA to ensure it marries up the popup form to the main form?
Thanks for your help, all!