Okay, I desperately need some help. here's my set-up:
I have a full table of Members in my organization, and I have a table of Seminars. Multiple members attend any given seminar, and each member may attend multiple seminars. I have those tabled linked through a table called linkMembersToSeminars. The keys are MemberID, SeminarID, and ID, respectively.
What I want is a form of Seminars with a subform for Participants and I want to be able to look up members from my Members table to enter into that form/subform as new Seminar Participants and thereby update my linkMembersToSeminars table.
Up to now I've been doing that by creating a Query that simply includes Members' info together with the corresponding Seminar info. From that query I create my form/subform.
All of that is fine and I have a beautiful form/subform. But I can't enter new Seminar Participants into the form 'cause I'm having trouble making a functional ComboBox. My subform of participants right now has ID (from the linkMembersToSeminars table) and then Member info (Last Name, First Name, etc). And I have the Last Name field as a ComboBox.
The ComboBox succesfully opens a list of Members ordered by Last Name but when I try to choose a member I get an error message that says:
The field cannot be updated because another user or process has locked the corresponding record or table. (Error 3164)
But everything else is closed and I can't for the life of me figure out the problem. I want to be able to just type in a last name or scroll through the list and have that member be added to the list of Participants for that Seminar.
Thoughts?
I have a full table of Members in my organization, and I have a table of Seminars. Multiple members attend any given seminar, and each member may attend multiple seminars. I have those tabled linked through a table called linkMembersToSeminars. The keys are MemberID, SeminarID, and ID, respectively.
What I want is a form of Seminars with a subform for Participants and I want to be able to look up members from my Members table to enter into that form/subform as new Seminar Participants and thereby update my linkMembersToSeminars table.
Up to now I've been doing that by creating a Query that simply includes Members' info together with the corresponding Seminar info. From that query I create my form/subform.
All of that is fine and I have a beautiful form/subform. But I can't enter new Seminar Participants into the form 'cause I'm having trouble making a functional ComboBox. My subform of participants right now has ID (from the linkMembersToSeminars table) and then Member info (Last Name, First Name, etc). And I have the Last Name field as a ComboBox.
The ComboBox succesfully opens a list of Members ordered by Last Name but when I try to choose a member I get an error message that says:
The field cannot be updated because another user or process has locked the corresponding record or table. (Error 3164)
But everything else is closed and I can't for the life of me figure out the problem. I want to be able to just type in a last name or scroll through the list and have that member be added to the list of Participants for that Seminar.
Thoughts?