I tried:

VB Code:
  1. If Dir$(App.Path & "\out.txt") <> "" = True Then
  2.  
  3.   fnum = FreeFile
  4.   Open App.Path & "\out.txt" For Input As fnum
  5.  
  6.     'Line Input #fnum, livekey
  7.    
  8.     livekey = Input(LOF(1), 1)
  9.       Close fnum
  10.  
  11. End If
And what I got from VB was and error: Input past end of file.

I tried Line Input and still the same, cuts off at that one part, same as before.

Dunno, this seems to be one wacky text file.

Chris