Results 1 to 2 of 2

Thread: Reading from a binary file

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2001
    Posts
    7

    Question

    I want to read a binary file. Does any of you have a small example for me

    Thanks

    Christian

  2. #2
    PowerPoster Chris's Avatar
    Join Date
    Jan 1999
    Location
    K-PAX
    Posts
    3,238
    Here it is...

    Code:
    Open "C:\1.dat" For Binary As #1
        Str = Space(LOF(1))
        Get #1, , Str
        Debug.Print Str
    Close #1

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