Page 1 of 1

If possible Container with Databand and set relation in Report Footer?

Posted: Wed Feb 21, 2007 3:10 am
by MARIMUTHU K
Hi Dear Savin,


Now we are using .NET 2.0 with SR_2006[1].12.16_R2005.

Doubts
1. If possible Container with Databand and set relation in Report Footer.(Because If more than one page then last or Previous Record Details wrong dispaly in First page and all page is coorect dispalyed.)
Already we are said subreport problem for above same case and you have guide and solve that problem(designed directly databand). But Now we are not using subreport and directly design component.

We are try to container with Databand in Footer band , but correct format dispaly only first page and next page is empty.


Any idea about that problem.



Thanks of Advance.




Regards,
K. Marimuthu.
ACSYS.

If possible Container with Databand and set relation in Report Footer?

Posted: Wed Feb 21, 2007 3:47 am
by Edward
Please describe your task with sample *.mrt file or with a picture. Please send this to Image.

Thank you.

If possible Container with Databand and set relation in Report Footer?

Posted: Fri Mar 02, 2007 2:52 am
by Edward
Thank you very much for describing the problem and the examples provided.

To initialize Master-Detail relations for the first page of the report (when Master DataBand in fact not printed on the first page of the report), please set in the Designer to the BeforePrintEvent of the Page component the following code:

Code: Select all

if(PageNumber == 1)
{
MasterDataBandOfThePage1.SetDetails();
}
Thank you.