How to limit records in the detail section?
eg:- Suppose DetailSectionRecords is a property
Report.DetailSectionRecords= 10
Only 10 records in detail section per page will be printed.
what is the code for doing the same??
pls help its very urgent
Printable View
How to limit records in the detail section?
eg:- Suppose DetailSectionRecords is a property
Report.DetailSectionRecords= 10
Only 10 records in detail section per page will be printed.
what is the code for doing the same??
pls help its very urgent
You could add a formula in the Details Format Section to force a new page after every 10 records.
Go into Section Expert. Highlight Details. Click on the Calculation button for New Page After. Add the formula:
RecordNumber Mod 10 = 0
I am using RDC to call reports in VB.
in settings provided by me, the user could select the number of records he wants in per page of Bill.
How to set the same thru RDC Code in VB?