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?
-
- Posts: 101
- Joined: Wed Jul 26, 2006 8:03 am
- Location: CHENNAI-TN, INDIA
If possible Container with Databand and set relation in Report Footer?
Please describe your task with sample *.mrt file or with a picture. Please send this to
.
Thank you.

Thank you.
If possible Container with Databand and set relation in Report Footer?
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:
Thank you.
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();
}