New Query opens as a popup

Arry

Registered User.
Local time
Today, 08:20
Joined
Oct 24, 2003
Messages
31
I have a database running with the application window hidden and would like to give users the option of creating querys based on the built in query wizard.

The query when opened using a button on a form is not displayed on screen because the app is hidden. I need to somehpw set this to a pop up!!!

Does anyone have any ideas on how this could be achieved.
 
Wouldn't you put it on a form, set it to datasheet view, and set the form's properties (PopUp and Modal) to Yes?
 
i want the query in design view so the user can create it themselves. I cannot do that with a query can i. It is a new query with nothing in it until the user selects tables etc...
 
Ah! Understand you now. The whole idea of having a query editor is that you can design your queries and have their definition saved prior to runtime.

To open the Design grid, you need to specify a query's name. Ergo, it can't be done.

The nearest you can get is:

Code:
DoCmd.RunCommand acCmdNewObjectQuery
 
If they cannot change the data in the tables then i don't see any reason why not. It just means that capable access users have more freedom to extract the data they want.
 
Simply because they will fill the db with redundant queries that will bloat it.
 
Just set the queris to delete after X days and informt the user of this when it is created. The dB Administrator can keep an eye on it!

Unfortunately as per previous it ain't possible. Bummer!!
 

Users who are viewing this thread

Back
Top Bottom