Enter Parameter Value Box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I noticed that everytime when I changed the name of a combo box from the
default assigned by the wizard (like Combo8) to something meaningful to me,
the "Enter Parameter Value" for Combo8 dialog box keeps popping up. I've
checked the code and replaced all references of the old name to the new one
and yet it keeps popping up. Is there anywhere else I should look for it?
I've tried a seach in the current module, procedure, etc but to no avail.
Thanks.
 
The request of the parameter happens at the query level.

Do you have a query that refers to:
Forms!SomeForm!Combo8

Or perhaps the RecordSource of the form, or the RowSource of another
combo/list box?

It could also be in the Filter or OrderBy properties of your form.
 
Back
Top