Login Page - Create Account

Support Board


Date/Time: Tue, 01 Jul 2025 15:40:49 +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;