BBK
Registered User.
- Local time
- Today, 13:27
- Joined
- Jul 19, 2010
- Messages
- 71
I have a form which has a drop down box which has a list of names the i enter through another form.
In the drop down box it lists the names by last name, first name with a small divider between the last and first name, last name being to the left of the divider, first name being to the right of the divider.
When i select/click a name i want to enter into the box it only adds the last name of the selected person. How can i get it to add both the First and Last name into the box.
The code on the box i have is as follows:
Any help in solving this problem would be greatly appreciated. I hope i have provided enough and relevant info about the issue.
Thank you in advance for any help provided.
In the drop down box it lists the names by last name, first name with a small divider between the last and first name, last name being to the left of the divider, first name being to the right of the divider.
When i select/click a name i want to enter into the box it only adds the last name of the selected person. How can i get it to add both the First and Last name into the box.
The code on the box i have is as follows:
Code:
SELECT [Tenant].[TenantID], Tenant.[LastName], Tenant.[FirstName] FROM Tenant ORDER BY [LastName], [FirstName];
Any help in solving this problem would be greatly appreciated. I hope i have provided enough and relevant info about the issue.
Thank you in advance for any help provided.