SidLancing
Programmer
I have a combobox which list contact names (ie. Title,First,Middle,Last). How can I get the row selected to be saved as a concatenated version of Title & First & Midldle & last. I'm not sure where to put the code... should this go to ON Click and the correct syntax here would it be possibly something like...
CName (i.e the combobox field name) = Title & " " & First & " " & Middle & " " & Last
The Rowsource for the combobox is:
Suggestions anyone?
CName (i.e the combobox field name) = Title & " " & First & " " & Middle & " " & Last
The Rowsource for the combobox is:
Code:
SELECT [locationID], [Suffix],[FirstName],[Mddle],[LastName] FROM Contact WHERE LocationID=[FORMS]![Order]![ShipingLocationID] ORDER BY [LastName];
Suggestions anyone?