Limit DataBand
-
- Posts: 219
- Joined: Tue Oct 27, 2015 4:19 pm
Limit DataBand
Hello.
I need a DataBand grow to a certain size and when you reach that size, break and print the rest on another page.
Thank you.
I need a DataBand grow to a certain size and when you reach that size, break and print the rest on another page.
Thank you.
Re: Limit DataBand
Hello,
You can use the additional code in the BeforePrint event, in which calculate summary size and use the Engine.NewPage() method.
Thank you.
You can use the additional code in the BeforePrint event, in which calculate summary size and use the Engine.NewPage() method.
Thank you.
-
- Posts: 219
- Joined: Tue Oct 27, 2015 4:19 pm
Re: Limit DataBand
Hello.
My DataBand print 4 times, how do I print it 10 more times after the last record?
Example:
first record
second record
third record
record room
Thank you.
My DataBand print 4 times, how do I print it 10 more times after the last record?
Example:
first record
second record
third record
record room
Thank you.
Re: Limit DataBand
Hello,
Please try to use the EmptyData component. Also, you can add the additional DataBand component and use the following code in BeforePrint event:
Thank you.
Please try to use the EmptyData component. Also, you can add the additional DataBand component and use the following code in BeforePrint event:
Code: Select all
AdditionalDataBand.CountData = 10 - DataBand.Count
-
- Posts: 219
- Joined: Tue Oct 27, 2015 4:19 pm
Re: Limit DataBand
Hello.
It worked.
Thank you.
It worked.
Thank you.
Re: Limit DataBand
Hello
We are always glad to help you!
Thank you.
We are always glad to help you!
Thank you.