Access:
I need to populate a combobox with a field from my query. However I want the first row to be "Show All" and everything after that to be from my query.
So I figure I need to put the results of my query into a string and append it to the end of my string that contains "Show All". Like this
MyRowSourceString = "Show All;Item1;Item2;Item3..."
Is there a way to do this?
