Page header printed on first Page properties dont work anymore
Page header printed on first Page properties dont work anymore
Hi,
i make the update yesterday to Version 2008.1.200.
Now i got some Problems with my existing reports.
In My report i have a Page header. The Option "Print on" is set to "Except first Page".
It seems that this option is not recognized. I can set every value but none of them work.
Can you confirm this ?. or is there allready an update ?.
I need this cause all my reports with page header printed dont work properly anymore.
Same Problem with the Property. "Print on even/odd Pages", seems also not to be regognized.
When i set to "Print on even Page". it doesnt work. also "Print on odd Pages" dont work.
Is there a fix for this allready in the Beta download area ? Can you confirm this issue ?.
Otherwise i have to go back to the Version from 2007
thx
stephan
i make the update yesterday to Version 2008.1.200.
Now i got some Problems with my existing reports.
In My report i have a Page header. The Option "Print on" is set to "Except first Page".
It seems that this option is not recognized. I can set every value but none of them work.
Can you confirm this ?. or is there allready an update ?.
I need this cause all my reports with page header printed dont work properly anymore.
Same Problem with the Property. "Print on even/odd Pages", seems also not to be regognized.
When i set to "Print on even Page". it doesnt work. also "Print on odd Pages" dont work.
Is there a fix for this allready in the Beta download area ? Can you confirm this issue ?.
Otherwise i have to go back to the Version from 2007
thx
stephan
Page header printed on first Page properties dont work anymore
When you set PrintOnAllPage to false it works. I tested it on the demo application with Simple List. ith PrintOnAllPages = true, the PrintOn option has no effect. With Printonallpages = false, it works.
I hope that helps.
Marco
I hope that helps.
Marco
Page header printed on first Page properties dont work anymore
Hi Marco,
i only got the property. "Print on" with options
1. All Pages
2. Except first Page
3. Except last Page
4.....
Where is a property printonallpages ?
Its a PageHeader not a Dataheader.
Dataheader or footer have a Property "Print on all Pages" but that doesnt exists in Pageheader.
Or is there a new Version out ? As i said i got the Release 2008.1 from 11 March
i only got the property. "Print on" with options
1. All Pages
2. Except first Page
3. Except last Page
4.....
Where is a property printonallpages ?
Its a PageHeader not a Dataheader.
Dataheader or footer have a Property "Print on all Pages" but that doesnt exists in Pageheader.
Or is there a new Version out ? As i said i got the Release 2008.1 from 11 March
Page header printed on first Page properties dont work anymore
You are right. With a page header it does not work. I thought you meant a header band, whch works in the way I described. Either change it to a header band or wait for the patch...
Marco
Marco
Page header printed on first Page properties dont work anymore
Thx Marco,
i cant wait cause we using these report in our daily business. Now we cant print any Invoices etc anymore.
And using the Dataheader for a page header cant be the right way.
Can Stimulsoft confirm this issue ?. Maybe there is allready a fix out.
Thx.
Stephan
i cant wait cause we using these report in our daily business. Now we cant print any Invoices etc anymore.
And using the Dataheader for a page header cant be the right way.
Can Stimulsoft confirm this issue ?. Maybe there is allready a fix out.
Thx.
Stephan
Page header printed on first Page properties dont work anymore
Yes, the working of the PrintOn property was changed to its previous, first realization. Now by default PrintOn property works after the report was rendered. It simply removes from the report all components which have PrintOn property not equals to AllPages.
You can restore previous logic by setting the following:
StiOptions.Engine.UseAdvancedPrintOn = true
If you still have some problems with running your report in the new 2008.1 release version, please send it to support[at]stimulsoft.com for analysis.
Thank you.
You can restore previous logic by setting the following:
StiOptions.Engine.UseAdvancedPrintOn = true
If you still have some problems with running your report in the new 2008.1 release version, please send it to support[at]stimulsoft.com for analysis.
Thank you.
Page header printed on first Page properties dont work anymore
Yes the issue for the PageHeaderBand is confirmed.Stephan1 wrote:In My report i have a Page header. The Option "Print on" is set to "Except first Page".
It seems that this option is not recognized. I can set every value but none of them work.
Can you confirm this ?. or is there allready an update ?.
The following option returns old logic for the PrintOn property and works correctly:
StiOptions.Engine.UseAdvancedPrintOn = true
We'll inform you when the issue with PrintOn property is resolved for the case when this option is not set.
Thank you.
Page header printed on first Page properties dont work anymore
Thx Edward,
i set the option as you described now my reports are show correct as before.
Stephan
i set the option as you described now my reports are show correct as before.
Stephan
-
- Posts: 10
- Joined: Fri Jan 04, 2008 3:55 am
- Location: Spain
Page header printed on first Page properties dont work anymore
Hello,
I'm facing this issue with EngineV2.
The PageFooter ignores the Print On = Except Last Page Setting. It just prints it on all pages.
The trick doesn't make any change in the described behaviour.
Using EngineV1 it works as expected.
I'm using version 2008.2.300 from October 5 2008
Any hint?
Thank you in advance.
I'm facing this issue with EngineV2.
The PageFooter ignores the Print On = Except Last Page Setting. It just prints it on all pages.
The
Code: Select all
StiOptions.Engine.UseAdvancedPrintOn = true
Using EngineV1 it works as expected.
I'm using version 2008.2.300 from October 5 2008
Any hint?
Thank you in advance.
Page header printed on first Page properties dont work anymore
Hello.
Please try to set the following properties into appropriate values:
For new reports EngineV2 is selected now by default.
Thank you.
Please try to set the following properties into appropriate values:
Code: Select all
StiOptions.Engine.UseAdvancedPrintOn = false; // for EngineV1
StiOptions.Engine.UseAdvancedPrintOnEngineV2 = false // for EngineV2
Thank you.