Click to See Complete Forum and Search --> : Problems with multiline text box


Manteau
May 29th, 1999, 11:19 AM
Hi,

I've written a program which gets the source code from a page on the internet, and puts the source in a multi line text box.

There is a problem, where all carrage returns do not exist (all text is on one line) and instead a
funny character (a bit thicker than |) is displayed.

Can someone tell me what the problem is?

Thanks for any help,

Manteau

Wayne Fuller
May 29th, 1999, 11:55 AM
Change the newline character '\n' to '\r\n'. It will then work.

Wayne