Razack
Razack

Reputation: 1896

print each row in different pages

I have a data table with data rows, which is coming from Ultra grid. I want to print each row in different pages of the report. How do I achieve this. I am using C# and active report.

Upvotes: 0

Views: 435

Answers (1)

LordHits
LordHits

Reputation: 5073

To print each row on a new page in ActiveReports, look at the properties of the detail section of your report. The NewPage property should be set to After. Each row in your report will now print on its own page.

Upvotes: 1

Related Questions