Confounding File I/O problem
Code:
MsgBox (FileLen(strread))
Open strread For Input As #intFILE
' Read text file line by line and insert into table.
Do Until EOF(intFILE)
Input #intFILE, strord_doc_nbr
This simple bit of code is bugging the <expletive> out of me.
FileLen confirms that strread is the correct path to the file, but when I get to the Input #intFile .... it doesn't read the file.
This same bit of code worked when I was pointing to a local file, bu now it doesn't work ... the only difference is that I'm pointing to a network file ... doesn't make sense ....
Any ideas???
Need a solution