Login Page - Create Account

Support Board


Date/Time: Sat, 13 Sep 2025 18:35:08 +0000



Post From: [ACSIL] Best way(s) to convert any data to SCString or string

[2022-05-05 15:42:41]
ForgivingComputers.com - Posts: 1120
The following example creates a string, formats it with text and a variable, and writes it to the Message Log.

SCString MessageOut;
float Price = sc.Last[sc.Index];
MessageOut.Format("Last Price = %f", Price);
sc.AddMessageToLog(MessageOut, 0);