I have a table in which I am storing 3 fields Last Name, First Name and Middle Name.
On a form I want to show the name as a single value in a combo box.
I know you have to use the recordsource property to populate it but I don't know how to use a SQL statement to do it please help. Here is the code:
cmboFullName.RowSource = Select Fname,Lname,Mname from tblName (I want to show it as FName (space) Mname (space) Lname)
cmboFullName.Requery
Thanks
On a form I want to show the name as a single value in a combo box.
I know you have to use the recordsource property to populate it but I don't know how to use a SQL statement to do it please help. Here is the code:
cmboFullName.RowSource = Select Fname,Lname,Mname from tblName (I want to show it as FName (space) Mname (space) Lname)
cmboFullName.Requery
Thanks