Possible change in DCMULTILINE

This forum is for eXpress++ general support.
Post Reply
Message
Author
MIGUELON
Posts: 135
Joined: Wed Feb 10, 2010 10:55 am

Possible change in DCMULTILINE

#1 Post 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

User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Possible change in DCMULTILINE

#2 Post by rdonnay »

Yes, that probably is a better option. I will change it in my code.

Thanks.
The eXpress train is coming - and it has more cars.

Post Reply