loading a combobox with and without a recordset

C

Chris

Hi,

I want to load a combobox using recordsource.
Then add a single selection by hardcoding that will be the first selection
in the entire list.

there are different ways to attack this problem I think and could use some
advice.

thanks

Chris
 
B

Brendan Reynolds

SELECT "(This is the hard-coded value)"
FROM tblTest
UNION SELECT TestText
FROM tblTest;
 
Top