MSAccessRookie
AWF VIP
- Local time
- Today, 16:36
- Joined
- May 2, 2008
- Messages
- 3,428
I hope the Title explains the situation appropriately.
I have a problem with a data source that requires special handling. I need to import information (including user names) from another Database that is not structured like ours. I have detailed only the user name issue, and assume that other issues will be similar.
tblContacts (Our Data):
On the Form
-- Rookie
I have a problem with a data source that requires special handling. I need to import information (including user names) from another Database that is not structured like ours. I have detailed only the user name issue, and assume that other issues will be similar.
tblContacts (Our Data):
- Primary Key
- First Name
- Middle Initial
- Last NameEmail
- LAN_ID
- (other information)
- Project ID (used as Primary Key)
- (other information)
- Project Manager Name (Firstname, Middle Initial, Last Name)
- Project Engineer Name (Firstname, Middle Initial, Last Name)
- More Names (Firstname, Middle Initial, Last Name)
On the Form
- There is a Combo Box that selects Project Information by ProjectID, including all of the Name Fields.
- There are Combo Boxes for each of of the Name Fields that are based on Queries to tblContacts and need to be modified, because they will not allow values that are not in their list.
- Is there an event to trap so that I can do this?
- Is there a better way to do what I want?
-- Rookie