Tuesday, November 02, 2004

Tip: Add (All) to a LookUp Combobox

To add (All) as the first item in the droplist of an unbound combobox, replace the RowSource property with the following SQL string:

SELECT City FROM tblRegions
UNION SELECT "(All)" FROM tblRegions;

No comments: