Hi,
What if you just replace +\ with \n ?
If you really want to keep this particular sequence you could also implement
this in your own textbox control to do the transform when the text property
is written/read...
--
Patrice
"Leon_Amirreza" <(E-Mail Removed)> a écrit dans le message de groupe de
discussion :
94EC8508-3816-4CC7-9079-(E-Mail Removed)...
> Hi,
> how can I have a .Net Control like (TextBox or Label) to interpret a
> unicode character (or a sequence off characters) to be interpreted as
> newline?
>
> I need Somthing like this:
>
> textBox1.NewLineString = "+\";
> textBox1.Text = "Jack+\Bill";
>
> to be shown like this inside the textbox:
>
> Jack
> Bill