I have several comboboxes on a form, they each have a RowSource which is a simple query
For example:
When I change the value of the combobox by selecting it from the list, it gives me a "Please Enter a Parameter Value" popup. Which is annoying. How do I make it not do this?
The rest of the Change event instructions will run if I manually type the selection into the Parameter dialog. If I just hit Ok or Cancel, the Value in the combobox is still the item I select, but the events don't fire.
For example:
Code:
SELECT DISTINCT Type FROM monsters;
The rest of the Change event instructions will run if I manually type the selection into the Parameter dialog. If I just hit Ok or Cancel, the Value in the combobox is still the item I select, but the events don't fire.