Hi
1. How can i display 20 records in detail section per page in crystal reports.
2. I have put Urdu data in my access 2003 database. How can i get that data in Crystal Report.
If anybody got clue could please email me.
Printable View
Hi
1. How can i display 20 records in detail section per page in crystal reports.
2. I have put Urdu data in my access 2003 database. How can i get that data in Crystal Report.
If anybody got clue could please email me.
Go to the Section Expert for the Details section
Check the New page After and try this code in the formula area:
WhilePrintingRecords;
numberVar linecount ;
linecount := linecount + 1;
if linecount > 20 then linecount := 1;
if linecount > 19 then true;