J
Jeff
I have a combobox that auto fills the client name as I type, although the
combo box's row source is
SELECT DISTINCTROW Clients.ClientID, [ClientLastName] & ", " &
[ClientFirstName] AS ClientLastandFirst FROM Clients ORDER BY
[ClientLastName] & ", " & [ClientFirstName];
This conveniently shows the whole name first and last. As I start to type
the last name everything works OK but as soon as I type the comma the
expanding (auto fill) stops working. Also if I continue and type the full
name and hit return I get a message that the name is not on the list! Any
Ideas on how to make this work?
combo box's row source is
SELECT DISTINCTROW Clients.ClientID, [ClientLastName] & ", " &
[ClientFirstName] AS ClientLastandFirst FROM Clients ORDER BY
[ClientLastName] & ", " & [ClientFirstName];
This conveniently shows the whole name first and last. As I start to type
the last name everything works OK but as soon as I type the comma the
expanding (auto fill) stops working. Also if I continue and type the full
name and hit return I get a message that the name is not on the list! Any
Ideas on how to make this work?