Using this:

Code:
Dim strTemp As String

Open "C:\Test.txt" For Binary Access Read As #1

strString = Input(FileLen("C:\Text.txt"), #1)

Close #1
It is incredibly slow. I tried using the get function, but it doesn't work.

Is there any faster way than this?