Retrieve Caption (Name) of the open report

  • Thread starter Thread starter BobV
  • Start date Start date
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
 
The name of the first report is:
Reports(0).Name
and its Caption property is:
Reports(0).Caption
 
Back
Top