I have a four byte string (e.g. 0x03020100) in little-endian format.
Is there a function that will convert this to a long (e.g. 66051).
I'm looking for something faster than ASC(MID$(STRING$,4)) * 16777216
+ ASC(MID$(STRING$,3)) * 65536 + ASC(MID$(STRING$,2)) * 256 +
ASC(STRING$)
Replies