PDA

View Full Version : Save information in public folders ?



separator
05-04-2005, 05:19 AM
Hello!
I need to save some information (.txt fail) and then have programming acces to it in Outlook!
It posible to make something like this:

Const FilePath As String = "Personal folder\favorites\myfolder\test.txt"
Dim fs, f

Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFile(strFilePath)

Set ts = f.OpenAsTextStream(2, -2) 'open mode "For Writing"
ts.WriteLine s
ts.Clos

Regards,
Separator

Or maybe it posible to save it somewhere in iintranet ?