If Possible Page FooterBand Data reference from DataBand in Data?

Stimulsoft Reports.NET discussion
Post Reply
MARIMUTHU K
Posts: 101
Joined: Wed Jul 26, 2006 8:03 am
Location: CHENNAI-TN, INDIA

If Possible Page FooterBand Data reference from DataBand in Data?

Post by MARIMUTHU K »

Hi

one urgent Help

If Possible Page FooterBand Data reference from DataBand in Data?

Because I have Render Same Data in PageFooterBand from DataBand.


Thanks of Advance,



Regards,
Marimuthu K
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

If Possible Page FooterBand Data reference from DataBand in Data?

Post by Vital »

You need render same data in PageFooterBand and in Databand? Can you provide any sample of what you need?

Thank you.
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

If Possible Page FooterBand Data reference from DataBand in Data?

Post by Edward »

If you need to show data from the report DataSources in the PageFooterBand and these Data is part of the Master-Detail relation, then you need in the designer in the BeforePrintEvent of the Page on which PageFooterBand is placed, apply a desired relations for the first page of the report.

Code: Select all

if (PageNumber == 1)
{
MasterDataBand1.SetDetails();
})
This code sets the correct position for the Detail DataSource of the Master-Detail relation in the Report Dictionary.

This situation happens when MasterDataBand1 of the relation is not printed on the first page, but you are already need to view the Data of the first detail band in the PageFooterBand (on the same first page).

Thank you.
Post Reply