Possible duplicate:
Large numbers in Pascal (Delphi)
I am trying to convert a value of 66 bits to decimal.
I note that the largest data type in delphi is int64, which can only allow 64-bit data. Delphi sample code for such a conversion is
result := strtoInt64('FFFFABCDEFF123456');
Please advice on how to use delphi for this without returning a range error.
Muda
mudashiru60
source
share