Not too complicated; reading as HEX file, converting to ascii
sub snb()
Open "E:\file.bin" For Binary As #1
c00 = Input(LOF(1), #1)
Close #1
redim sn(len(c00)+1)
For j = 1 To len(c00)
sn(j) = Asc(Mid(c00, j, 1))
Next
cells(1)=join(sn,"")
End sub
TANKS for macro but I try a macro that displays the values of excel a BIN file in hex, sorted as if it were an editor and divided by single byte.
Bookmarks