JamesHardiman
MIS
Access (bless its heart) has corrupted my database, and none of my (100s of) reports now have any input parameters.
I want to do something like this:
... but that only lists open reports. I want to get at the list of reports that you can see in the database window.
Anyone got any ideas?
Ta,
JamesH@sunsail.com
I want to do something like this:
Code:
Private Sub cmdDoIt_Click()
Dim r As Report
For Each r In Reports
If r.InputParameters <> "" Then
Debug.Print r.InputParameters
End If
Next r
End Sub
... but that only lists open reports. I want to get at the list of reports that you can see in the database window.
Anyone got any ideas?
Ta,
JamesH@sunsail.com