DaProgrammer
Programmer
Dear all:
For a weather program i am making, I have to input data from clientraw.txt (if you want to see the file goto into sequential variables a to z, then aa to zz, then aaa to zzz, and so on. Here is my code that when I put anymore variables than this it gives me an Input Past End Of File Error:
I simply do not understand where my problem is. Is there an alternative method to inputing this data, each into seperate variables?
-Thanks Much in Advance,
Eric A. Hill
***NOTE, PLEASE IGNORE THE WORD WRAP!***
For a weather program i am making, I have to input data from clientraw.txt (if you want to see the file goto into sequential variables a to z, then aa to zz, then aaa to zzz, and so on. Here is my code that when I put anymore variables than this it gives me an Input Past End Of File Error:
Code:
Open "A:\clientraw.txt" For Input As #1
Do While Not EOF(1)
Dim hh
Input #1, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, hh, ii, z, aa, bb, cc, dd, ee, ff, gg
Loop
Close #1
I simply do not understand where my problem is. Is there an alternative method to inputing this data, each into seperate variables?
-Thanks Much in Advance,
Eric A. Hill
***NOTE, PLEASE IGNORE THE WORD WRAP!***