Exporting my list of queries (1 Viewer)

kleaves

Registered User.
Local time
Today, 02:48
Joined
Nov 21, 2006
Messages
25
HI, I have a number of queris within my access database and I wish to export the list of queries. Is there any way in which I can do this? Or Am I going to have to retype the list in word? :-(
 

KeithG

AWF VIP
Local time
Today, 02:48
Joined
Mar 23, 2006
Messages
2,592
Paste the below SQL into the query designer


SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Type)=5));


then export the query
 

kleaves

Registered User.
Local time
Today, 02:48
Joined
Nov 21, 2006
Messages
25
Keith

Thanks, for the quick response - thats exactly what I wanted.

Kleaves
 

AccessJunkie

Senior Managing Editor
Local time
Today, 02:48
Joined
May 11, 2006
Messages
278

boblarson

Smeghead
Local time
Today, 02:48
Joined
Jan 12, 2001
Messages
32,059
AccessJunkie:

GREAT TOOL!!!! I'm impressed and thanks for providing it. It is highly appreciated.
 

boblarson

Smeghead
Local time
Today, 02:48
Joined
Jan 12, 2001
Messages
32,059
I've been an "Access Junkie" for years (love/hate relationship) :D
 

Users who are viewing this thread

Top Bottom