Fix number of record per page.
Fix number of record per page.
Hi,
How do i fix the number of record perpage ? lets say 10 records per page ?
How do i fix the number of record perpage ? lets say 10 records per page ?
Fix number of record per page.
Hello,
Place container with required height on page. In container place your bands.
Thank you.
Place container with required height on page. In container place your bands.
Thank you.
Fix number of record per page.
Jan,
Thanks for the reply
But what you mean container ? Panel you mean ?
Thanks for the reply
But what you mean container ? Panel you mean ?
Fix number of record per page.
Container means component like Panel.
But what if I had some data row which the height is undeterministic?
What if the property of the band is Can shrink? or Can grow?
But what if I had some data row which the height is undeterministic?
What if the property of the band is Can shrink? or Can grow?
Fix number of record per page.
You could put the following into the BeforePrintEvent of your DataBand (where DataBand1 is the name of your DataBand)
I haven't used this so I don't know if it will work in all cases.
Code: Select all
DataBand1.NewPageAfter = (Line % 10 == 0);
Fix number of record per page.
Thanks for all the reply.
It wont work...
You see, my page got these in sequence.. DataBand1, HeaderBand2, DataBand2.
In each of the databand i need to limit the number of records. I cannot put it in a panel, cause the subsequent Band wont follow in the flow...Or do I put all the bands in the panel ?
I cannot use this code
DataBand1.NewPageAfter = (Line % 10 == 0); cause all my subsequent band will move to the next page.
It wont work...
You see, my page got these in sequence.. DataBand1, HeaderBand2, DataBand2.
In each of the databand i need to limit the number of records. I cannot put it in a panel, cause the subsequent Band wont follow in the flow...Or do I put all the bands in the panel ?
I cannot use this code
DataBand1.NewPageAfter = (Line % 10 == 0); cause all my subsequent band will move to the next page.
Fix number of record per page.
if you just have 10 lines then you will have a empty page.
Fix number of record per page.
I really hope there is a work around for this.
None of them are perfect solutions for now.
None of them are perfect solutions for now.
Fix number of record per page.
Anyone can help ?
Fix number of record per page.
Hello,
What wrong with Panel component? Its good variant.
Thank you.
What wrong with Panel component? Its good variant.
Thank you.