MUlti Column Report

Stimulsoft Reports.NET discussion
Post Reply
EDV Gradl
Posts: 228
Joined: Sat Jun 17, 2006 9:50 am
Location: Germany

MUlti Column Report

Post by EDV Gradl »

In a multi column report, is it possbile not to print the first 10 (or 4 or whatever) rows of data. So the first ten row would be blank and on position 11 the first datarow would print. This would make a lot easier to print labels with stimulreport. (e.g. I have a page with 20 label, but the first 4 are missing, so I skip the first for positions and begin printing at position 5).

Thanks a lot!
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

MUlti Column Report

Post by Edward »

EDV wrote:In a multi column report, is it possbile not to print the first 10 (or 4 or whatever) rows of data. So the first ten row would be blank and on position 11 the first datarow would print. This would make a lot easier to print labels with stimulreport. (e.g. I have a page with 20 label, but the first 4 are missing, so I skip the first for positions and begin printing at position 5).

Thanks a lot!
There are 2 ways for disabling printing of first 10 datarows.
1.Please use the following code in BeforePrintEvent of StiText component:

Code: Select all

Text1.Enabled = !(Line<10)
2.Please use the following code in GetValueEvent of StiText component:

Code: Select all

if (Line<10)e.Value = "";
Thanks!
Post Reply