How do I get VB to read the information from a file from a certain Hexadecimal location? So if I were to read something from a file at hexadecimal address of A5? How would I do it?
thanks
Printable View
How do I get VB to read the information from a file from a certain Hexadecimal location? So if I were to read something from a file at hexadecimal address of A5? How would I do it?
thanks
You need to convert the hexvalue to decimal first:
CLng("&H" & hexvalue)
then open the file in binary and get the value from there