Select query

martijn

Registered User.
Local time
Today, 11:26
Joined
May 13, 2002
Messages
11
I want to select a query from a list of all queries in my database. How can I do this? Could someone help me?

Thanx
 
Not sure where you're going with this, however, the following SQL in a query will bring up a listing of your exiting queries:

SELECT Name, Type
FROM MSysObjects
WHERE (((Type)=5) AND ((Left([Name],1))<>"~"));
 
Thanx, that's what i needed!
 
O ja,
What I want to do with it is this:
I have a form, I want to select a query with a combo box, and then I want to generate a MS-Word document of the selected query
 

Users who are viewing this thread

Back
Top Bottom