Since over 6 month i noticed something curious inside created executeable files, even with the latest PB v4.02 version. Just try to compile following small codeline and create an executeable:
Code: Select all
a.s = "" + Str(2)

What could this be and why does it happens? This only happens, when using the Str() command somewhere in your project! Seems the stringvalue is the max limit for the Str() command to convert. Just try this and you see what i mean:
Code: Select all
a.s = "" + Str(2147483647)
Debug a.s
a.s = "" + Str(2147483648)
Debug a.s
 Thanks for reading...
 Thanks for reading...


