Shanheavel Posted December 8, 2010 Posted December 8, 2010 Hello, How can I convert some number (for example: 123456) to 32-bit integer? Is it possible with autoit?
JohnOne Posted December 8, 2010 Posted December 8, 2010 It already is run this code $var = 123456 MsgBox(0,"Var Type",VarGetType($var)) AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
MvGulik Posted December 8, 2010 Posted December 8, 2010 ;; enforced int64 to int32 conversion. ;; - only needed when dealing with some functions that take note of the type of the value. $iType64_but_int32_value = Int("1") $iType32 = Number(String($iType64_but_int32_value)) "Straight_and_Crooked_Thinking" : A "classic guide to ferreting out untruths, half-truths, and other distortions of facts in political and social discussions.""The Secrets of Quantum Physics" : New and excellent 2 part documentary on Quantum Physics by Jim Al-Khalili. (Dec 2014) "Believing what you know ain't so" ... Knock Knock ...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now