G
Gary Schuldt
I am using the standard technique for putting an <Any> / <All> selection on
a combo box whose record source is primarily a table of selections.
My problem is that, once the <Any> selection is clicked, the combo box goes
blank instead of displaying "<Any>". Is this expected? Can I fix it? All
the rest of the code works fine.
Here's the code:
cbx Record Source:
SELECT [tForm].[FormID], [tForm].[FormName], [tForm].[PluralFormName]
FROM tForm
UNION
SELECT "", "<Any>", "Plants" FROM tForm
ORDER BY [tForm].[FormName];
Thanks.
Gary
a combo box whose record source is primarily a table of selections.
My problem is that, once the <Any> selection is clicked, the combo box goes
blank instead of displaying "<Any>". Is this expected? Can I fix it? All
the rest of the code works fine.
Here's the code:
cbx Record Source:
SELECT [tForm].[FormID], [tForm].[FormName], [tForm].[PluralFormName]
FROM tForm
UNION
SELECT "", "<Any>", "Plants" FROM tForm
ORDER BY [tForm].[FormName];
Thanks.
Gary