G
Guest
I have a combo box(tech name) with its row souce query2. Query2 pulls
Tech_name; Tech_email; Tech_PhoneNumber from my tech table. I am running this
after update:
Private Sub Technician_AfterUpdate()
[TECHNICIAN_PHONE] = Technician.Column(2)
[TECHNICIAN_EMAIL] = Technician.Column(1)
End Sub
Basicly what I want it to do is after you select the name of the technician
the Technician_phone and Technician_Email are auto inputted. The problem is
only the value in column 1 is works. What I mean is the Technician_phone is
not updated whil the Technician_email is. Running the query shows both
columns populated But for some reason im not able to pull data from the
second column.
Tech_name; Tech_email; Tech_PhoneNumber from my tech table. I am running this
after update:
Private Sub Technician_AfterUpdate()
[TECHNICIAN_PHONE] = Technician.Column(2)
[TECHNICIAN_EMAIL] = Technician.Column(1)
End Sub
Basicly what I want it to do is after you select the name of the technician
the Technician_phone and Technician_Email are auto inputted. The problem is
only the value in column 1 is works. What I mean is the Technician_phone is
not updated whil the Technician_email is. Running the query shows both
columns populated But for some reason im not able to pull data from the
second column.