G
Guest
I have a multiline textbox where I want to insert a message on multiple lines. In the full .Net framework, I can do this by using the Environment.NewLine property like so:
txtMyTextBox.Text = "How are you?" + Environment.NewLine + "Good";
Does anyone know of a work-around, since both Environment.NewLine is not supported and "\n" doesn't work either?
Thanks,
Stephen
txtMyTextBox.Text = "How are you?" + Environment.NewLine + "Good";
Does anyone know of a work-around, since both Environment.NewLine is not supported and "\n" doesn't work either?
Thanks,
Stephen