Support Board
Date/Time: Fri, 19 Dec 2025 12:45:51 +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; |
