Continuing Group Header
Continuing Group Header
If same group header is on next page then I need to show that group header on next page
How should I implement this in my report?
How should I implement this in my report?
Continuing Group Header
If I understand you correctly, you have 2 GroupHeaderBands one underneath the other on the same page.
GroupHeaderBand1.StartNewPage = true
GroupHeaderBand2.StartNewPage = true
You need achieve the following:
GroupHeaderBand1 is printed on page1
GroupHeaderBand2 is printed on page2
Is it your aim?
GroupHeaderBand1.StartNewPage = true
GroupHeaderBand2.StartNewPage = true
You need achieve the following:
GroupHeaderBand1 is printed on page1
GroupHeaderBand2 is printed on page2
Is it your aim?
Continuing Group Header
Sorry I could not explain you correctly, I mean If my data is continuing on next page then I need to show same group header on next page also if the data is continued on next page ? How should I do this ? If start new page property is true then every new group is starting from new page I dont want that.
Continuing Group Header
For this case it is enough to set GroupHeader.PrintOnAllPages property in true.
Thank you.
Thank you.
Continuing Group Header
Thanx it works
Continuing Group Header
Let us know if you need any help.
Thank you.
Thank you.
Continuing Group Header
IF the group Header is continued on next page then should we add "Continued" in that header means
If Group Header on 1'st Page is
Header 1
Group Header on 2'nd page is
Header 1 continued
If Group Header on 1'st Page is
Header 1
Group Header on 2'nd page is
Header 1 continued
Continuing Group Header
Yes, it is possible.satisht wrote:IF the group Header is continued on next page then should we add "Continued" in that header means
If Group Header on 1'st Page is
Header 1
Group Header on 2'nd page is
Header 1 continued
Please do the following steps:
1. Place StiText component on GroupHeaderBand with Enabled = false and desired text inside, e.g. Text1.
2. In the BeforePrint event of the DataBand please set the following script:
Code: Select all
Text1.Enabled = True
Code: Select all
Text1.Enabled = False
Continuing Group Header
I am not having group footer and how should i write before print event?
Continuing Group Header
I am not having group footer and how should i write before print event?