Page 1 of 1

Add blank rows? / Print control N times?

Posted: Fri Jan 30, 2009 12:22 am
by Pio Leonardo V. Rapirap
Is it possible to add blank rows or print certain control N times ?


what i would like to achieve is, add N blank rows (where N is a parameter)
in the bottom of the result set

Code: Select all

N = 3;

Code: Select all

Sequence       ProdID          Name
1              PROD111         Product Name 1
2              PROD222         Product Name 2
3              PROD333         Product Name 3
4              -----------     ------------------                      
5              -----------     ------------------
6              -----------     ------------------

Code: Select all

Then N blank rows is printed in the bottom
Is this possible?
Thanks for the help

Add blank rows? / Print control N times?

Posted: Fri Jan 30, 2009 11:15 am
by Edward
Hi.

There is an Empty band component for filling an empty space on the last page between the footer and the last row of the Data.

You can place a DataBand without any additional components after the main DataBand and set CountData property of it in N.

Thank you.