I have the following combobox:
WorkerID
* WorkerID
* Last Name
* First Name
* Cell Phone
* Email
* Resume Link
The Statement for the combobox is:
SELECT TblResumes.WorkerID, TblResumes.[First Name] & " , " & TblResumes.[Last Name], TblResumes.[Cell Phone], TblResumes.Email, TblResumes.[Resume Link] FROM TblResumes ORDER BY [Last Name];
I have put this in the txtcellphone control source:
=[WorkerID].[column](4)
I have tried putting this in the afterupdate of the WorkerID combobox:
Me.txtcellphone = Me.WorkerID.Column(4)
Me.txtemail = Me.WorkerID.Column(5)
Me.txtresumelink = Me.WorkerID.Column(6)
and no matter what I do all three come up blank?
WorkerID
* WorkerID
* Last Name
* First Name
* Cell Phone
* Resume Link
The Statement for the combobox is:
SELECT TblResumes.WorkerID, TblResumes.[First Name] & " , " & TblResumes.[Last Name], TblResumes.[Cell Phone], TblResumes.Email, TblResumes.[Resume Link] FROM TblResumes ORDER BY [Last Name];
I have put this in the txtcellphone control source:
=[WorkerID].[column](4)
I have tried putting this in the afterupdate of the WorkerID combobox:
Me.txtcellphone = Me.WorkerID.Column(4)
Me.txtemail = Me.WorkerID.Column(5)
Me.txtresumelink = Me.WorkerID.Column(6)
and no matter what I do all three come up blank?