Hi
Is it possible to read file header information from a binary file?
If so, how is it done?
Any help would be appreciated...
Thanks
Kelly
(This is all new to me)
Printable View
Hi
Is it possible to read file header information from a binary file?
If so, how is it done?
Any help would be appreciated...
Thanks
Kelly
(This is all new to me)
this will get the first 160 bytes of any file
into the Chunk byte array
Dim Chunk(160) As Byte
f = FreeFile
Open fName For Binary Access Read As f
Get f, , Chunk()
Close f