hareshdgr8 Ответов: 1

Как поймать имя раздела с помощью имени объекта отчета в crystal report


Как поймать имя раздела из имени объекта отчета
Пожалуйста, помогите мне.

1 Ответов

Рейтинг:
2

Hariom Shah

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