DislikedHi great coders, Please help to understand this below ... *) can we just compare the DATETIME type of value ? Eq: DATETIME var1, var2; If (var1 > var2) { // do something ... } *) or we must convert it to type INTEGER first ? Int iVar1 = (int) var1; int iVar2 = (int) var2; if (iVar > iVar2 ) { // do something } *) and to draw object , we must convert this integer value to type string, and put it as object name ? string sTime1 = IntegerToString (iVar1); string myObjName1 = StringConcatenate (""xxxxx", sTime1, "XXX", .. ); // Do somethink Is it right...Ignored
No, we don't need to convert datetime to integer - why would we need to do that?
And, your object can be named anything you want.
If it's important to have the datetime in the name, then we can add it:
Inserted Code
TimeToString(MyTime);
.ex4/.ex5 files can't be fixed or modified / I'm not a coder!
1