Page 1 of 2

Page header printed on first Page properties dont work anymore

Posted: Wed Mar 12, 2008 4:35 am
by Stephan1
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

Page header printed on first Page properties dont work anymore

Posted: Wed Mar 12, 2008 6:29 am
by EDV Gradl
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

Page header printed on first Page properties dont work anymore

Posted: Wed Mar 12, 2008 6:48 am
by Stephan1
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




Page header printed on first Page properties dont work anymore

Posted: Wed Mar 12, 2008 7:06 am
by EDV Gradl
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

Page header printed on first Page properties dont work anymore

Posted: Wed Mar 12, 2008 7:09 am
by Stephan1
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

Page header printed on first Page properties dont work anymore

Posted: Wed Mar 12, 2008 7:26 am
by Edward
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.

Page header printed on first Page properties dont work anymore

Posted: Wed Mar 12, 2008 7:36 am
by Edward
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 ?.
Yes the issue for the PageHeaderBand is confirmed.

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

Posted: Wed Mar 12, 2008 7:51 am
by Stephan1
Thx Edward,

i set the option as you described now my reports are show correct as before.

Stephan

Page header printed on first Page properties dont work anymore

Posted: Mon Oct 20, 2008 6:47 am
by rsaladrigas
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

Code: Select all

StiOptions.Engine.UseAdvancedPrintOn = true
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.

Page header printed on first Page properties dont work anymore

Posted: Mon Oct 20, 2008 11:21 am
by Edward
Hello.

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
For new reports EngineV2 is selected now by default.

Thank you.