I have a combobox that is filled with an ID and a name of all the active users. The data is being pulled from a table. I am concatenating the first and last name together.
Here is the code:
I am selecting the user from another form and placing the name (just like above) into a global variable.
On Load of the form in question, I am placing the global variable into column 1's value.
Here is the code:
What is happening is that the name is not being displayed in the combobox.
Where am i going wrong?
Thanks!!
Eddi Rae
Here is the code:
Code:
[B]Trim([LastName]) & ", " & Trim([FirstName])[/B]
On Load of the form in question, I am placing the global variable into column 1's value.
Here is the code:
Code:
[B]strUser = Trim(strUserLast) & ", " & Trim(strUserFirst)
cboUsers.Value = strUser[/B]
What is happening is that the name is not being displayed in the combobox.
Where am i going wrong?
Thanks!!
Eddi Rae