Login Page - Create Account

Support Board


Date/Time: Sat, 10 May 2025 13:05:30 +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;