Page header printed on first Page properties dont work anymore

Stimulsoft Reports.NET discussion
Stephan1
Posts: 122
Joined: Fri Aug 31, 2007 7:22 am
Location: Germany

Page header printed on first Page properties dont work anymore

Post 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
EDV Gradl
Posts: 228
Joined: Sat Jun 17, 2006 9:50 am
Location: Germany

Page header printed on first Page properties dont work anymore

Post 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
Stephan1
Posts: 122
Joined: Fri Aug 31, 2007 7:22 am
Location: Germany

Page header printed on first Page properties dont work anymore

Post 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



EDV Gradl
Posts: 228
Joined: Sat Jun 17, 2006 9:50 am
Location: Germany

Page header printed on first Page properties dont work anymore

Post 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
Stephan1
Posts: 122
Joined: Fri Aug 31, 2007 7:22 am
Location: Germany

Page header printed on first Page properties dont work anymore

Post 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
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

Page header printed on first Page properties dont work anymore

Post 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.
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

Page header printed on first Page properties dont work anymore

Post 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.
Stephan1
Posts: 122
Joined: Fri Aug 31, 2007 7:22 am
Location: Germany

Page header printed on first Page properties dont work anymore

Post by Stephan1 »

Thx Edward,

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

Stephan
rsaladrigas
Posts: 10
Joined: Fri Jan 04, 2008 3:55 am
Location: Spain

Page header printed on first Page properties dont work anymore

Post 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.
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

Page header printed on first Page properties dont work anymore

Post 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.
Post Reply