S
Song Su
I have a combo box to look for name. The row source is:
SELECT [Full_Name] & " " & [EN] AS Expr1, WSInstructor.EN
FROM WSInstructor
ORDER BY [Full_Name] & " " & [EN];
After find the record, I want to assign EN to intEN as below:
Private Sub cboLookUp_AfterUpdate()
intEN = Me!EN
intEN.SetFocus
End Sub
However, error message says "can't find the field 'EN" refered to in your
expression.
Where did I do wrong?
Thanks for help.
SELECT [Full_Name] & " " & [EN] AS Expr1, WSInstructor.EN
FROM WSInstructor
ORDER BY [Full_Name] & " " & [EN];
After find the record, I want to assign EN to intEN as below:
Private Sub cboLookUp_AfterUpdate()
intEN = Me!EN
intEN.SetFocus
End Sub
However, error message says "can't find the field 'EN" refered to in your
expression.
Where did I do wrong?
Thanks for help.