That sounds like a better method than what I have been doing. Do you have a link that explains how to do this?
Also I tried changing the ControlSource of the controls, but I got error: #Name?
So I have "T4EmployeeID_Combo" which is a combo box and the "RowSource" is set to a QUERY "Q1EntryUser" which has the following fields:
UserID
T1EmployeeFirstName
T1EmployeeLastName
Q1EmployeeFullName: [T1EmployeeFirstName] & " " & [T1EmployeeLastName]
T1EmployeeEmail
T1EmployeeNumber
T1EmployeeExtension
On FORM F4CBA I have three text boxes that I want to fill and used the following as the ControlSource
F4EmployeeName = [Q1EntryUser]![Q1EmployeeFullName]
T4EmpEmail = [Q1EntryUser]![T1EmployeeEmail]
T4EmpNum = [Q1EntryUser]![T1EmployeeNumber]
I really thought this would work, but I still get #Name?.
Suggestions?
bytreeide