The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Sevag.K on August 11, 2007, 06:23:27 AM

Title: New lines and edit streams
Post by: Sevag.K on August 11, 2007, 06:23:27 AM
I notice selections in a Rich Edit control use $0D as new line while streaming the data out outputs $0D0A.  Is there a way to force the Rich Edit control to stream out only $0D for new lines?
Title: Re: New lines and edit streams
Post by: Tedd on August 13, 2007, 10:28:25 AM
I think you'll have to modify each chunk as you take it from stream-out before saving it to the file.
Title: Re: New lines and edit streams
Post by: hutch-- on August 13, 2007, 12:12:46 PM
Sevag,

With Rich Edit controls (2 and higher) they internally use only ascii 13 as the line end/new line. You can specify that the control saves in CRLF format if you need it. The alternative is to buffer in and out and modify the output so you get the line end / newline character that you want but it may be a bit slower than the EM_STREAMIN/OUT method.
Title: Re: New lines and edit streams
Post by: Sevag.K on August 13, 2007, 10:55:34 PM
Thanks.

I decided to work directly on the stream as it comes in.  It's a tiny bit slower but the streams I'm dealing with here are usually very small.