Hello!
When I use a quad (64bit) constant value in PB IDE and start the program, everything works.
Code: Select all
#App = 1134677777648066560
MessageRequester("App", Str(#App)) ; o.k.
pbcompiler.exe Test.pb /CONSTANT App=1134677777648066560
MessageRequester outputs 1329471488.
Btw, the constant is as big cuase it is a timestamp (Year<<49, Month<<45, etc.).
So, my workaround is using a constant as string.
Is it true that 64bits are not possible as constants given to pbcompiler.exe?
Thanks a lot!