Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to Catch Section Name from Report Object Name
Please help me.
Posted
Updated 25-May-20 23:59pm

1 solution

VB
Dim rpt As ReportDocument
            Dim rep_name As String = "test_report"
            rpt = DirectCast([Assembly].GetEntryAssembly.CreateInstance(rep_name), ReportDocument)

            Dim crSections As CrystalDecisions.CrystalReports.Engine.Sections
            crSections = rpt.ReportDefinition.Sections
            For Each crSec As CrystalDecisions.CrystalReports.Engine.Section In crSections
                MsgBox(crSec.Name)
            Next
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900