Jump to content

Recommended Posts

Posted

Check this out....

$num = 123456789123456789123456789
MsgBox(0,"",$num)

heres the output:

9223372036854775807

i wonder whats wrong?

kindly help me... :mellow:

Posted (edited)

Check this out....

$num = 123456789123456789123456789
MsgBox(0,"",$num)

heres the output:

9223372036854775807

i wonder whats wrong?

kindly help me... :mellow:

Read the help for frequently asked questions.

15. What are the current technical limits of AutoIt v3?

Here are details of the current technical limits of AutoIt. Please note that some of the limits are theoretical and you may run into performance or memory related problems before you reach the actual limit.

Maximum length of a single script line: 4,095

Maximum string length: 2,147,483,647 characters

Number range (floating point): 1.7E308 to 1.7E+308 with 15-digit precision

Number range (integers): 64-bit signed integer <-------------------------------------------------much smaller than your number!

Hexadecimal numbers: 32-bit signed integer (0x80000000 to 0x7FFFFFFF)

Arrays: A maximum of 64 dimensions and/or a total of 16 million elements

Maximum depth of recursive function calls: 5100 levels

Maximum number of variables in use at one time: No limit

Maximum number of user defined functions: No limit

Maximum number of GUI windows: No limit

Maximum number of GUI controls: 65532

So if you had this instead it would give a sensible answer

$num = 123456789123456789123456789.0
MsgBox(0,"",$num)
Edited by martin
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
  • 2 weeks later...
Posted

Read the help for frequently asked questions.

So if you had this instead it would give a sensible answer

$num = 123456789123456789123456789.0
MsgBox(0,"",$num)

Oh... i get it... datatype range problem...

is there any posible solution?

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...