davesmith202
Employee of Access World
- Local time
- Today, 23:28
- Joined
- Jul 20, 2001
- Messages
- 522
I have this code:
It prints strwebpage to the current folder.
How can I get it to print to a folder (that may or may not yet exist) who's name is stored in strMyFolderName?
Thanks,
Dave
Code:
strMyFolderName=Me.PageID
fnum = FreeFile()
Open strFileName For Output As fnum
Print #fnum, strwebpage
Close #fnum
It prints strwebpage to the current folder.
How can I get it to print to a folder (that may or may not yet exist) who's name is stored in strMyFolderName?
Thanks,
Dave