Table of Contents
VProject Class: Properties
VProject.ReportCount
Declaration:
ReportCount as Integer (r/o)
Description:
Returns the count of reports inside this container.
Example:
for i = 1 to my_project.ReportCount ... end
VProject.ReportName(index)
Declaration:
ReportName( inIndex as Integer ) as String (r/o)
Description:
Returns the name of the Nth report. This name can be used, for example, to build a list of all reports in the project.
Example:
dim repName as String for i = 1 to my_project.ReportCount repName = my_project.ReportName( i ) end