Support Board
Date/Time: Sat, 20 Dec 2025 00:12:04 +0000
Post From: Create Time string
| [2020-10-06 13:40:22] |
| User681150 - Posts: 62 |
|
i want to create a standard chart time string 11:35:20 to output to the window log. i have this but cant concatenate to make it a string. can anyone advise how to.. the "time" variable keeps failing int Hour = sc.BaseDateTimeIn[sc.Index].GetHour();
int Minute = sc.BaseDateTimeIn[sc.Index].GetMinute(); int Second = sc.BaseDateTimeIn[sc.Index].GetSecond(); SCString time = Hour+":"+Minute+":"+Second ; |
