04-22-2025, 06:44 AM
DIM I AS _UNSIGNED _INT64
PIARRAY(0) = 3
FOR I = 2 TO NUMBYTES - 1
PIARRAY(I) = PIARRAY(I) - 48
NEXT
That converts each byte ASCII value to it's numeric value.
PIARRAY(0) = 3
FOR I = 2 TO NUMBYTES - 1
PIARRAY(I) = PIARRAY(I) - 48
NEXT
That converts each byte ASCII value to it's numeric value.

