J
JohnE
I posted this earlier but is getting further down on the
list and afraid it will go without further reply.
I have a form (usrfrmPRAProjectTeamMembers)that is a
continuous form. There are 6 fields on the form (one
being ProjectTeamMemberEmail. The entry to all these
fields are stored on another table
(usrtblPRAProjectTeamMembers). The field
(ProjectTeamMember) on the form is a drop list that
populates from another table (tblTeamMembers). What I
would like to do is to reduce the amt of time for the user
by not having to type in all the info for a selected
employee. When the user selects an employee's name in the
drop list, the remaining fields fill in with the
employee's info. The following is a line from the
AfterUpdate event of the ProjectTeamMember drop list.
This does not produce an error but the field on the form
is blank. Am I missing something here or what? Can
DLookup even be used on a continuous form?
***************
Me.ProjectTeamMemberEmail = DLookup
("", "tblTeamMembers", "[ProjectTeamMemberEmail]
= '& Forms![usrfrmPRAProjectTeamMembers]!
[ProjectTeamMember]'")
***************
Any assistance given is appreciated and thanks in advance.
*** John
list and afraid it will go without further reply.
I have a form (usrfrmPRAProjectTeamMembers)that is a
continuous form. There are 6 fields on the form (one
being ProjectTeamMemberEmail. The entry to all these
fields are stored on another table
(usrtblPRAProjectTeamMembers). The field
(ProjectTeamMember) on the form is a drop list that
populates from another table (tblTeamMembers). What I
would like to do is to reduce the amt of time for the user
by not having to type in all the info for a selected
employee. When the user selects an employee's name in the
drop list, the remaining fields fill in with the
employee's info. The following is a line from the
AfterUpdate event of the ProjectTeamMember drop list.
This does not produce an error but the field on the form
is blank. Am I missing something here or what? Can
DLookup even be used on a continuous form?
***************
Me.ProjectTeamMemberEmail = DLookup
("", "tblTeamMembers", "[ProjectTeamMemberEmail]
= '& Forms![usrfrmPRAProjectTeamMembers]!
[ProjectTeamMember]'")
***************
Any assistance given is appreciated and thanks in advance.
*** John