[RESOLVED] Outlook From VB6 (Setting var to folder)
I need to set a Variable to a subfolder.. cant remember how!!
the subfolder will be 5 to 6 deep
Personal Folders > Folder1 > SubFolder1 > SubFolder2 etc
Set oApp = New Outlook.Application
Set oNs = oApp.GetNamespace("MAPI")
Set oFld = oNs.Folders("Personal Folders")
whats next?
Re: Outlook From VB6 (Setting var to folder)
ok.. I got it.. I was expecting a popup on the next . but it works anyways
Set oApp = New Outlook.Application
Set oNs = oApp.GetNamespace("MAPI")
Set oFld = oNs.Folders("Personal Folders")
Set sFldr = oFld.Folders("SubFolder1").Folders("SubFolder2").Folders("SubFolder3")
Thanks anyways!