Support Board
Date/Time: Sun, 29 Dec 2024 17:14:50 +0000
Post From: How large can SCString be?
[2016-02-03 14:06:53] |
Al SC Developer - Posts: 434 |
I would suspect you are not building your strings properly. Instead of using Format(), just build the string using concatenation and then assign: SCString Temp = "Line 1; Temp += "\n"; Temp += "Line 2"; Temp += "\n"; Temp += "Line 3; ... Tool.Text = Temp; |