Question

I use visual studio 2010 with Crystal Report, and I'm created a report and look like example:

How to display n record per page, but no break at the end

My problem is when RecordNumber > 8, page break and display as example: How to display n record per page, but no break at the end

I want to after the number of records > 8 and end of page then page will be broken. I search some of code:

RecordNumber mod 8 = 0 and not OnLastRecord

and

 if Remainder (RecordNumber, 6) = 0 then true else false

But can't apply with my case

Was it helpful?

Solution

I work something very stupid, but it's resovled with my case. I fake a view report viewer and code all function for it with vb.net.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top