Getting a List of Access Reports

J

Jen

Hi,

You could do something like this, although you'd probably
want to add some error handling:

Dim proj As Object
Dim intRptCount As Integer
Dim rptItem As Integer
Dim strRptName As String

Set proj = CurrentProject

intRptCount = proj.AllReports.Count

For rptItem = 0 To intRptCount - 1
strRptName = proj.AllReports(rptItem).Name
Next rptItem

Regards,
Jen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top