09-14-2006 03:38 PM
09-14-2006 04:09 PM
How may digits do you need? If 64 is enough, you could set the default to U64 and keep the rest as is. (You should place a small wait in your while loop though).
You should also set the lenght to the right size when you format to hex (8 for U32, 16 for U64, 2 for U8), else you'll potentailly loose leading zeroes.
For unlimited lenght, you need to e.g. use a loop. Attached is one simple possibility. (Be careful if the input string lenght is not a multiple of 8 or if it contains garbage characters).
09-14-2006 05:38 PM