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?
I think you'll have to modify each chunk as you take it from stream-out before saving it to the file.
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.
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.