Hello,
I'm totally nesw at this ... so any help would be appreciated
Basically I have a table that stores all the info I need auto pop.
Table (Employess) > Employee Name, Phone, Email
On the form ... I would like to achieve ...
When you select the employee name, that the Phone and Email textboxes auto pop ...
Now, this is the current code I'm using and it only auto pops the Phone textbox and not the Email textbox...
Private Sub Originator_s_Name_AfterUpdate()
Me.[Originator_s_Telephone] = Me.[Originator_s_Name].Column(1)
Me.[Originator_s_Email] = Me.[Originator_s_Name].Column(2)
End Sub
I get no errors either .... I'm stumped
thank you in advance
I'm totally nesw at this ... so any help would be appreciated
Basically I have a table that stores all the info I need auto pop.
Table (Employess) > Employee Name, Phone, Email
On the form ... I would like to achieve ...
When you select the employee name, that the Phone and Email textboxes auto pop ...
Now, this is the current code I'm using and it only auto pops the Phone textbox and not the Email textbox...
Private Sub Originator_s_Name_AfterUpdate()
Me.[Originator_s_Telephone] = Me.[Originator_s_Name].Column(1)
Me.[Originator_s_Email] = Me.[Originator_s_Name].Column(2)
End Sub
I get no errors either .... I'm stumped
thank you in advance