Condition not respected problem
Posted: Tue May 21, 2024 10:32 pm
Hi all, I have a question, surely it will be something I miss, how come the first condition is executed as if the variable is greater than the compared number?
Code: Select all
StringSize.i = 1
If StringSize > 4278190079
Debug "StringSize="+Str(StringSize)
Debug "INSIDE"
EndIf
If StringSize > 10
Debug "StringSize="+Str(StringSize)
Debug "INSIDE2"
EndIf