Retrieve Caption (Name) of the open report

B

BobV

Group:

I need help with the VBA code to retrieve the caption (name) of a report
that is currently open.

Any help will be greatly appreciated.

Thanks
BobV
 
A

Allen Browne

The name of the first report is:
Reports(0).Name
and its Caption property is:
Reports(0).Caption
 
Top