From: Raghu on
Hi All,

I wanted to draw a line in the proc report

' 30 -'s
';
curretly i was using line(a)20'------------------------------';

i am using 30(50is end position-20 start position) dashes inside the
quotes to draw a line from 20th column to 50th column.


is there any way i could declare do it by declaring the position
insted of drawing 30 dashes inside the quotes

like line(a)20'-' to line(a)50; to draw a line with dashes from 20th
postion to 50th position;

Please let me know.


Thanks a lot.

Raghu





From: RolandRB on
On Apr 22, 7:02 am, Raghu <vamshi.redd...(a)gmail.com> wrote:
> Hi All,
>
> I wanted to draw a line in the proc report
>
>                                          ' 30 -'s
> ';
> curretly i was using line(a)20'------------------------------';
>
> i am using 30(50is end position-20 start position) dashes inside the
> quotes to draw a line from 20th column to 50th column.
>
> is there any way i could declare do it by declaring the position
> insted of drawing 30 dashes inside the quotes
>
> like    line(a)20'-' to line(a)50;  to draw a line with dashes from 20th
> postion to 50th position;
>
> Please let me know.
>
> Thanks a lot.
>
> Raghu

line @20 30*'-';