P
Patrick
I have a combo box with the following as its row source:
SELECT -1 as AddNewChoice, "<add new client>" as Bogus FROM
[tblClients] UNION SELECT [tblClients].[intClientID],
[tblClients].[strName] FROM [tblClients] ORDER BY [strName];
When tblClients has records in it, <add new client> is displayed at the
top of the combo box as desired. However, if tblClients is empty, <add
new client> is not displayed. What is wrong here?
Thanks,
Patrick
SELECT -1 as AddNewChoice, "<add new client>" as Bogus FROM
[tblClients] UNION SELECT [tblClients].[intClientID],
[tblClients].[strName] FROM [tblClients] ORDER BY [strName];
When tblClients has records in it, <add new client> is displayed at the
top of the combo box as desired. However, if tblClients is empty, <add
new client> is not displayed. What is wrong here?
Thanks,
Patrick