Hey everyone, this one has been stumping me for a while now, i need to read a text file character by character, immediately the Input Statemtn jumped to mind, and then i thought about incrememnting how much of the file i fetches and usinf the Left Command to get the next character as below -

VB Code:
  1. Do Until EOF(ff)
  2.         x = x + 1
  3.         Str = Input(x, ff)
  4.         Str = Right(Str, 1)
  5.         Debug.Print Str
  6.    
  7.     Loop

Needless to say it doesn't work...

Can anyone show me how i would go about doing this ?