| View previous topic :: View next topic |
| Author |
Message |
Sanders Newbie
Joined: 12 Apr 2004 Posts: 6
|
Posted: Fri Jan 14, 2005 2:38 am Post subject: big numbers.... :S |
|
|
Hi,
i would like to know why with VDS 5,
this : %%number = @MOD(200000,54356243463242534652354267478)
doesn't work ?
i have an error like : not numeric ! but it is numeric
big numbers are not supported ?
thanks... |
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Fri Jan 14, 2005 6:59 am Post subject: |
|
|
This arithmetic operation on integers probably handles 32-bit Longint, i.e. max value would be 2147483647.
Try this: | Code: | | info @MOD(2147483647,200000) |
And then try to increase the first value by 1
Greetz
Dr. Dread _________________ ~~ Alcohol and calculus don't mix... Don't drink and derive! ~~
String.DLL * advanced string processing |
|
| Back to top |
|
 |
|