Hi,
Can i break the line in Text area using '\n' ?
Thnx
Hello,
I believe - yes, you can. You could try the following:
ultraDesktopAlert1.Show("111\n222\n333", "111\n222\n333");
Please let me know if this works for you.
Let me tell you an interesting thing ... if i do the same as you told things are good. But are not good with the following way:
String str1 = "111";
String str2 = "222";
String str3 = DateTime.Now.ToString("dd/MM/yyyy hh:mm:ss tt");
String message = str3 + "\n" + str1 + "\n" + str2;
ultraDesktopAlert1.Show(message);
Now in this case all the three strings will show in one line. So please help me through this.
Thanks.