[RESOLVED] Is there any way to do math operation with numbers bigger than max long value?
I'm trying to divide a very large random number (bigger than 9223372036854775807 that is the maximum of Long in vb) by 2 for example, and if I msgbox the output it will be smth like x.xxxxxxxxxxxxxxxxE+xx (when I declare the number as a string and have option strict off).
So any way to get the real value?
Re: Is there any way to do math operation with numbers bigger than max long value?
Re: Is there any way to do math operation with numbers bigger than max long value?
Quote:
Originally Posted by
dunfiddlin
Nice, thanks so much. It was hard to implement it because I wasn't finding the system.numerics dll file to reference to my program first, but now that I found it everything is cool, awesome man.