might be better to have a text box on the form to enter
the data.
then in your query as criteria...
[forms]![yourform]![yourtextbox]
in the form you can hassel the user like this in the
before update event...
if isnull(me.textbox)then
msgbox("enter something in the textbox")
exit sub
end if
the exit sub part will keep dumping them out of the code
until they enter something in the text box.
-----Original Message-----
I want to prompt the user, via a form, to enter criteria used by a query to
return the desired data set.
.