CharlesHerrick
Registered User.
- Local time
- Today, 17:58
- Joined
- Oct 28, 2003
- Messages
- 20
I want to write an error file using the following statement:
Open "C:\Shared Documents\PreMailError.txt" For Output As #1
I get an invalid directory with that, but it works fine with this one:
Open "C:\PreMailError.txt" For Output As #1
Assume the space in the folder name is the problem. Tried assigning "Shared Documents" to a string variable and using the variable in the Open, with no luck.
Suggestions? Thanks ... Charles
Open "C:\Shared Documents\PreMailError.txt" For Output As #1
I get an invalid directory with that, but it works fine with this one:
Open "C:\PreMailError.txt" For Output As #1
Assume the space in the folder name is the problem. Tried assigning "Shared Documents" to a string variable and using the variable in the Open, with no luck.
Suggestions? Thanks ... Charles