Ive working on creating export files with minimal success. I wrote a really simple routine and I keep getting an access to path is denied
Dim flwriter As StreamWriter
Dim i As Long
flwriter = File.CreateText("c:\jmyfile.txt")
For i = 1 To 10
flwriter.WriteLine(i)
Next i
flwriter.Close()
Any help would be appreciated
Dim flwriter As StreamWriter
Dim i As Long
flwriter = File.CreateText("c:\jmyfile.txt")
For i = 1 To 10
flwriter.WriteLine(i)
Next i
flwriter.Close()
Any help would be appreciated