Page 1 of 1

relieve little difference to one page

Posted: Fri Nov 13, 2009 9:56 am
by so29
I have one page and need to 3 copeis of it

change Number of copeis =3

Page 1 of report must relieve little difference

use by this code in BeginRenderdEvent

If(PageNumber == 1)
{
Text1.Enabled=false;
}


But impress by all page


Thank you.

relieve little difference to one page

Posted: Fri Nov 13, 2009 10:09 am
by Stephan1
so29 wrote:I have one page and need to 3 copeis of it

change Number of copeis =3

Page 1 of report must relieve little difference

use by this code in BeginRenderdEvent

If(PageNumber == 1)
{
Text1.Enabled=false;
}


But impress by all page


Thank you.

Hi,

you need to put that code into the BeginRenderEvent of the Page not of the BeginRenderEvent of the Report.

Hope that help's

cheers

Stephan

relieve little difference to one page

Posted: Sat Nov 14, 2009 7:32 am
by so29
hi
you need to put that code into the BeginRenderEvent of the Page not of the BeginRenderEvent of the Report
this code use in BeginRenderEvent of the Page
But impress by all page




relieve little difference to one page

Posted: Tue Nov 17, 2009 3:39 am
by Edward
Hi

Please write instead of

Code: Select all

If(PageNumber == 1)
{
  Text1.Enabled=false;
}
the following code:

Code: Select all

if(CurrentPrintPage == 1)
{
Text1.Enabled=false;
}
Thank you.