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
relieve little difference to one page
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
hi
But impress by all page
this code use in BeginRenderEvent of the Pageyou need to put that code into the BeginRenderEvent of the Page not of the BeginRenderEvent of the Report
But impress by all page
relieve little difference to one page
Hi
Please write instead of
the following code:
Thank you.
Please write instead of
Code: Select all
If(PageNumber == 1)
{
Text1.Enabled=false;
}
Code: Select all
if(CurrentPrintPage == 1)
{
Text1.Enabled=false;
}