hi sir,
i want to print blank lines in a report,is it possible;
i have taken data item as number table;
in the body (pre section ) i have written the code
SNo := SNo + 1;
LineCount := "Sales Invoice Line".COUNT;
is it right or wrong please suggest me
0
Comments
Please use a proper subject for your posts..
Can you more clear what do you mean by blank lines?
is it regarding fixed lines per page?
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
i am generating a report in classic client,
at the time report generation in body section i need a blank lines ;
that is i have a four fields,
description,quantity,unitprice,amount
xxx 1 40000 2000
yyy 2 8900 44444
after these two lines in the body section i want to print some empty blank lines ;
after that body i want to print footer section;
i have send you attachment ,can you suggest me please;
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
MaxLines := 21;
LinesNeeded := MaxLines;
LinesPrinted := "Sales Invoice Line".COUNT;
Blank := 0;
PagesNeeded := ROUND(LinesPrinted DIV MaxLines);
PrintBody := FALSE;
OnAfterGetRecord()
Blank := Blank + 1;
IF PagesNeeded <=1 THEN
BEGIN
LinesNeeded := LinesNeeded - LinesPrinted;
REPEAT
Blank := Blank + 1;
UNTIL Blank = MaxLines;
END;
i have tried this code ,but it was not generating any blank lines;
suggest me please
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
but i haven't add anything in the sctions;
http://www.mibuso.com/forum/viewtopic.php?f=32&t=45487&start=0
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
it was not helping my requirement
NoOfLines := NoOfLines - (Pages * 25);
SETRANGE(Number,1,NoOfLines);
sir we have to write this code presections,can you suggest me please sir