D
David Wilson
The script:
set oOutlook = CreateObject("Outlook.Application")
Set oFolder = oOutlook.GetNameSpace("MAPI").Folders("Public Folders")
Set oFolder = oFolder.Folders("All Public Folders")
MsgBox "Length: " & Len(oFolder.StoreID) & Chr(10) & Chr(10) &
oFolder.StoreID
Short and sweet. Problem is, that under Outlook 2000, it returns a 140
char StoreID, but under 2003, it returns a char one. The one returned
by 2003 doesn't seem to be usable as a StoreID. One thing I did note
was that the first 140 chars of the 450 char string was identical.
Has anyone seen this or know what the heck is going on?
Thanks,
David Wilson
set oOutlook = CreateObject("Outlook.Application")
Set oFolder = oOutlook.GetNameSpace("MAPI").Folders("Public Folders")
Set oFolder = oFolder.Folders("All Public Folders")
MsgBox "Length: " & Len(oFolder.StoreID) & Chr(10) & Chr(10) &
oFolder.StoreID
Short and sweet. Problem is, that under Outlook 2000, it returns a 140
char StoreID, but under 2003, it returns a char one. The one returned
by 2003 doesn't seem to be usable as a StoreID. One thing I did note
was that the first 140 chars of the 450 char string was identical.
Has anyone seen this or know what the heck is going on?
Thanks,
David Wilson