>> Thank you. I tried that but it gives all the detail. I was just
>> interested in the names, but I will take your suggestion and play with
>> the options button. Thanks again.
ah...ok....
Even if you turn off all options, you still get one page per reprot....
If you just want a quick list, then just type in the follwing code into a
module.
Sub ShowReprots()
Dim i As Integer
For i = 0 To CurrentProject.AllReports.Count - 1
Debug.Print CurrentProject.AllReports(i).Name
Next
End Sub
just hit f5 to run, and you can then cut/paste the list of reprots into
word, or whatever....
Maurice - 17 May 2007 18:27 GMT
You could also create a query based on the MS Sys object table and filter
this to the report options
1. Create a query based on the ms sys objects table
2. drag the appropriate fields to the grid
3. look for a familiar name in the field regarding the reports
4. in the criteria field place the ID number for reports
create your output (report) based on this query
ps To do this your systems tables should be set to visible...

Signature
Maurice Ausum
> >> Thank you. I tried that but it gives all the detail. I was just
> >> interested in the names, but I will take your suggestion and play with
[quoted text clipped - 19 lines]
> just hit f5 to run, and you can then cut/paste the list of reprots into
> word, or whatever....
Douglas J. Steele - 17 May 2007 18:28 GMT
Or you can use the following query:
SELECT [Name]
FROM MSysObjects
WHERE [Type]=-32764
ORDER BY [Name]

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
>>> Thank you. I tried that but it gives all the detail. I was just
>>> interested in the names, but I will take your suggestion and play with
[quoted text clipped - 19 lines]
> just hit f5 to run, and you can then cut/paste the list of reprots into
> word, or whatever....