Page 1 of 1

MUlti Column Report

Posted: Mon Jul 10, 2006 5:00 am
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!

MUlti Column Report

Posted: Mon Jul 10, 2006 5:49 am
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!