Page 1 of 1

Possible change in DCMULTILINE

Posted: Sat Sep 25, 2010 4:13 am
by MIGUELON
Hi Roger,
1347 line in the file _dcclass.prg pairing following code:

IF! Empty (:: maxChars). AND. Len (cBuffer)>:: maxChars

I would not be better to change it to:

IF! Empty (:: maxChars). AND. Len (rtrim (cBuffer))>:: maxChars

The problem is that if we use the "DCMULTILINE" with the option of maxChars also tells us in the blanks on the right.

Greetings
Miguel

Re: Possible change in DCMULTILINE

Posted: Tue Sep 28, 2010 10:54 am
by rdonnay
Yes, that probably is a better option. I will change it in my code.

Thanks.