HelloW
HelloW

Reputation: 1617

Get Title from Crystal Report in C#

I am trying to extract the title from a Crystal report with c#. I am having trouble locating the code to find this title. Here is a picture on the CR designer interface.

Crystal Reports Document Properties

I am basically trying to find the .net equivalent of CRAXDRT.Report.ReportTitle which is what is currently working in MS-Access VBA.

Upvotes: 1

Views: 1188

Answers (1)

HelloW
HelloW

Reputation: 1617

Here is what I ended up using

CrystalDecisions.CrystalReports.Engine.SummaryInfo.ReportTitle

Here is the link
http://msdn.microsoft.com/en-us/library/aa664938(v=vs.71).aspx

Upvotes: 1

Related Questions