Hello, there are few questions to ask,
1. How to present a report from one DataBand to show out three info?
My questions like the picture:
it is A4 page And I want three row on the page.
The PageHead,Footer all the same And Databand at three row also the same ,only info not the same.
How Can I do?
I am waiting your help.
Thank you very much.
How to show out three rows from the same databand On A4?
How to show out three rows from the same databand On A4?
- Attachments
-
- picture.png (7.39 KiB) Viewed 3675 times
Re: How to show out three rows from the same databand On A4?
Hello,
If you need to show each row on a separate page - you can use the NewPageAfter/Before property for the DataBand.
Also, you can use the following code (in BeforePrint event of the DataBand) to set a new page depends on data count on one page:
if (Line == 3)
Engine.NewPage()
Thank you.
If you need to show each row on a separate page - you can use the NewPageAfter/Before property for the DataBand.
Also, you can use the following code (in BeforePrint event of the DataBand) to set a new page depends on data count on one page:
if (Line == 3)
Engine.NewPage()
Thank you.
Re: How to show out three rows from the same databand On A4?
To:Alex
Sorry There is a Stupid question
How do I set it up?
"
Also, you can use the following code (in BeforePrint event of the DataBand) to set a new page depends on data count on one page:
if (Line == 3)
Engine.NewPage()
"
Thank you.
Sorry There is a Stupid question
How do I set it up?
"
Also, you can use the following code (in BeforePrint event of the DataBand) to set a new page depends on data count on one page:
if (Line == 3)
Engine.NewPage()
"
Thank you.
-
- Posts: 6812
- Joined: Tue Mar 20, 2018 5:34 am
Re: How to show out three rows from the same databand On A4?
Hello,
Open events tab and write code in the necessary event.
Thank you.
Open events tab and write code in the necessary event.
Thank you.
- Attachments
-
- Capture.PNG (39.95 KiB) Viewed 3576 times
Re: How to show out three rows from the same databand On A4?
Thank You~~Lech Kulikowski wrote: ↑Thu Aug 30, 2018 6:56 pm Hello,
Open events tab and write code in the necessary event.
Thank you.
-
- Posts: 6812
- Joined: Tue Mar 20, 2018 5:34 am
Re: How to show out three rows from the same databand On A4?
Hello
We are always glad to help you!
Please let us know if you need any additional help.
Thank you.
We are always glad to help you!
Please let us know if you need any additional help.
Thank you.