ok.. hate that!

Use Binary / Get...

VB Code:
  1. Open "C:\path\to\file.txt" For Binary As #1
  2.     tmp = Space(LOF(1))
  3.     Get #1, , tmp
  4. Close #1