AD
Administrator
Syncfusion Team
July 19, 2005 09:55 PM UTC
Hi Byron,
TextBoxExt is derived from TextBox. If you try the same strings in a TextBox you''ll notice that the same thing happens. This is because Microsoft''s standard for a new line is \r\n, rather than the more general standard of \n.
To get TextBox to correctly display \n, you''ll need to do a .Replace("\n","\r\n") on your string before assigning it to the TextBox.
Regards,
Gregory Austin
Syncfusion Inc.
BT
Byron Tate
July 19, 2005 10:35 PM UTC
yea, OK . I did that, so I''ll keep that code in. Thanks.