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:
Do Until EOF(ff) x = x + 1 Str = Input(x, ff) Str = Right(Str, 1) Debug.Print Str Loop
Needless to say it doesn't work...
Can anyone show me how i would go about doing this ?




Reply With Quote