From: "Robin Debreuil" <[EMAIL PROTECTED]> > Obviously it can be done -- assigning "\n" to a textbox.Text converts it
Are you sure about this? Or rather, you sure that you're escaping consistently in the strings provided as examples? Assigning "\n" to textbox.Text does the right thing, because the string is converted by the compiler. What it sounds like you want to do is to convert "\\n" to "\n". (I'm consistently using the standard C# string escapes.) -- Curt Hagenlocher [EMAIL PROTECTED] =================================== This list is hosted by DevelopMentor� http://www.develop.com Some .NET courses you may be interested in: NEW! Guerrilla ASP.NET, 17 May 2004, in Los Angeles http://www.develop.com/courses/gaspdotnetls View archives and manage your subscription(s) at http://discuss.develop.com
