R
Rob
Hello,
I'm desperately trying to figure out a way to have a macro in Outlook 2003
allow/prompt a user to define, via browsing, a folder on what ever available
Drive in order to save selected files, attachments and whatever. I know it's
possible in Excel and such but I can't seem to get that to work in Outlook
either. :{
Below is what I'm playing with but to no avail. :/
Thanks Much,
Rob
I'm desperately trying to figure out a way to have a macro in Outlook 2003
allow/prompt a user to define, via browsing, a folder on what ever available
Drive in order to save selected files, attachments and whatever. I know it's
possible in Excel and such but I can't seem to get that to work in Outlook
either. :{
Below is what I'm playing with but to no avail. :/
Code:
Dim ns As NameSpace
Dim MyPath As MAPIFolder
Set ns = GetNamespace("MAPI")
Set MyPath = ns.Folders
MsgBox MyPath
AND
Dim ns As NameSpace
Dim MyPath As MAPIFolder
Dim fs As FileSystemObject
'Dim fsb As FileSystemBrowser
Set fs = CreateObject("Scripting.FileSystemObject")
'Set fsb = CreateObject("Scripting.FileSystemBrowser")
Set ns = GetNamespace("MAPI")
'Set MyPath = fs.GetFolder.Path
Set MyPath = ns.Folders
MsgBox MyPath
Thanks Much,
Rob