It seems as though all the examples I've seen are of writing a text file to the local hard drive(c. I got my app to write to the hard drive in development using:
set txtFileObj = fsoObj.OpenTextFile("c:\testfile.txt", 2, true). This works just fine.
Now that my app works the way I want it, I need to write it to the network so that another app can pick it up and use the contents. I tried to use the following line but get a
"Path not found" error.
set txtFileObj = fsoObj.OpenTextFile("n:\GROUP\Eagle\Plotting\Gas\map_file.txt", 2, true)
Any suggestions would be appreciated. Thanks.
set txtFileObj = fsoObj.OpenTextFile("c:\testfile.txt", 2, true). This works just fine.
Now that my app works the way I want it, I need to write it to the network so that another app can pick it up and use the contents. I tried to use the following line but get a
"Path not found" error.
set txtFileObj = fsoObj.OpenTextFile("n:\GROUP\Eagle\Plotting\Gas\map_file.txt", 2, true)
Any suggestions would be appreciated. Thanks.