luis713 0 Posted July 28, 2019 (edited) I have this simple code but I noticed I get a different number than the value declared before, I even tried using constant values using "const", the first value works fine, but the var2 changes to other value, it works fine if I write the numbers using quotation marks $var1 = 353039373439333231 $var2 = 31373534333631303739 MsgBox(0, "", $Var1) MsgBox(0, "", $Var2) Edited July 28, 2019 by luis713 Share this post Link to post Share on other sites
Papak 2 Posted July 28, 2019 Simply put, second number is too big. On a 64 bit system, the highest 64-bit signed integer you can store is 263 − 1 which equals to 9,223,372,036,854,775,807. So a small comparison: 9,223,372,036,854,775,807 31,373,534,333,631,303,739 Your number is 3.5 times larger. Trying to store that big of a number would usually cause buffer overflow in some programming languages, but AutoIt caps it at its maximum value, which is 263 − 1 = 9,223,372,036,854,775,807. So that's why you're getting that specific number instead of 31,373,534,333,631,303,739. Consider storing it as a string if you don't have to do math operations with it. Otherwise read about handling big numbers. 2 pixelsearch and Subz reacted to this Share this post Link to post Share on other sites
water 2,387 Posted July 28, 2019 Or have a look at the BigNum UDF: My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
luis713 0 Posted July 31, 2019 thanks both @Papak @water Share this post Link to post Share on other sites