Results 1 to 2 of 2

Thread: File header information

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Sep 2000
    Posts
    86

    Talking

    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)

  2. #2
    Lively Member
    Join Date
    Aug 2000
    Posts
    125
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width