I had a report that refered to a non existant column so that when the report was opened it prompted the user with the "Paramater Entry Window" for a string to search on and all was well.
Now, I have reappropriated the report to use for more than just that purpose so I removed the references to the non existant column. What I want to do now is use docmd.OpenReport with the "where" statement to essentially do the same thing. I used:
(I did test this with an actual string in place of the non existant column name, and it worked fine)
Anyways, I kinda hoped this would spawn the entry window like when it's coded into the report itself, but as you all probably know: it didn't. All I got was "cannot find field "|" as blah blah blah" So, I know I can make my own little pop-up forms, but since I'll be doing a lot of these, I was hoping that I could just force the Parameter Entry to display somehow using VBA.
Any guesses?
Xhonzi
Now, I have reappropriated the report to use for more than just that purpose so I removed the references to the non existant column. What I want to do now is use docmd.OpenReport with the "where" statement to essentially do the same thing. I used:
Code:
docmd.OpenReport GenericReport,,"problem like '*[SearchString]*'"
(I did test this with an actual string in place of the non existant column name, and it worked fine)
Anyways, I kinda hoped this would spawn the entry window like when it's coded into the report itself, but as you all probably know: it didn't. All I got was "cannot find field "|" as blah blah blah" So, I know I can make my own little pop-up forms, but since I'll be doing a lot of these, I was hoping that I could just force the Parameter Entry to display somehow using VBA.
Any guesses?
Xhonzi