cardgunner
Registered User.
- Local time
- Today, 12:33
- Joined
- Aug 8, 2005
- Messages
- 210
I have been given the task to create a db for our open house where we can record who shows up.
We have our current businesses[extend_names], new bussinesses or corrections to be made to our current bussinesses[2011_attendee] and the contacts for both[2011_attendee_contacts]
When someone arrives at our open house I would like our registars to look up and see if the business is in our system already. if it is the registar would ask them if the information we have for them is correct. If it was we record the name, email, phone, and possibly address of the contact. If the information was not correct we record the corrected, or additional, info and then go on to record the contact info. If the business is not there they record the new info and then the new contact.
The corrected, new, or additional info on the bussinesses needs to be recorded in [2011_attendee]. I will review this later to verify the info collected is correct. I don't want them updateing or changing any info in [extend names].
[extend names] has a unique field, bpid. [2011_attendee] has a unique field, alt_id. [2011_attendee_contacts] is p_id.
I have combo box, bpid_box, on main form for the user to select the business name. The record source for this combo box is a union query between [extend_names] and [2011_attendee].The selection of the combox box displays info in form.extend_listing.
If the user needs to record new info on the business they do it in form.2011_attendee_form. This creates a new record in [2011_attendee] and this creates a new unique value in alt_id.
The contact info is recorded in form.2011_attendee_contact.
I have form.extend-Listings linked to the bpid_box on field bpid.
I have form.2011_attendee_form linked to bpid and alt_id.
I have form.2011_attendee_contacts linked to bpid and alt_id
The issues I am having is when we create a new record in form.2011_attendee_form it dissappears. I have to refresh data and select record from combo box. Then finish recording the rest of the info. This is because that form is linked by the bpid and the alt_id. The alt_id doesn't get generated till a record is created. Once a record is created the link no longer is valid. How can this work?
Imagine people standing in 2 lines registering. 4 people from same new business, random in line. First person comes up - new business is recorded - new contact is recorded. Another person comes up a little later from same new business. I want to select that new business and not have to record all that info again.
We have our current businesses[extend_names], new bussinesses or corrections to be made to our current bussinesses[2011_attendee] and the contacts for both[2011_attendee_contacts]
When someone arrives at our open house I would like our registars to look up and see if the business is in our system already. if it is the registar would ask them if the information we have for them is correct. If it was we record the name, email, phone, and possibly address of the contact. If the information was not correct we record the corrected, or additional, info and then go on to record the contact info. If the business is not there they record the new info and then the new contact.
The corrected, new, or additional info on the bussinesses needs to be recorded in [2011_attendee]. I will review this later to verify the info collected is correct. I don't want them updateing or changing any info in [extend names].
[extend names] has a unique field, bpid. [2011_attendee] has a unique field, alt_id. [2011_attendee_contacts] is p_id.
I have combo box, bpid_box, on main form for the user to select the business name. The record source for this combo box is a union query between [extend_names] and [2011_attendee].The selection of the combox box displays info in form.extend_listing.
If the user needs to record new info on the business they do it in form.2011_attendee_form. This creates a new record in [2011_attendee] and this creates a new unique value in alt_id.
The contact info is recorded in form.2011_attendee_contact.
I have form.extend-Listings linked to the bpid_box on field bpid.
I have form.2011_attendee_form linked to bpid and alt_id.
I have form.2011_attendee_contacts linked to bpid and alt_id
The issues I am having is when we create a new record in form.2011_attendee_form it dissappears. I have to refresh data and select record from combo box. Then finish recording the rest of the info. This is because that form is linked by the bpid and the alt_id. The alt_id doesn't get generated till a record is created. Once a record is created the link no longer is valid. How can this work?
Imagine people standing in 2 lines registering. 4 people from same new business, random in line. First person comes up - new business is recorded - new contact is recorded. Another person comes up a little later from same new business. I want to select that new business and not have to record all that info again.
Attachments
Last edited: