S
Sibi
Hi there,
iam launching following C# code:
/****************************************************************/
string Folder = String.Empty;
Outlook.Application oApplication = new Outlook.ApplicationClass();
Outlook.NameSpace oNameSpace =oApplication.GetNamespace("mapi");
Outlook.MAPIFolder oMAPIFolder = oNameSpace.PickFolder();
//Works on Outlook 2003 great, returns nothing on Outlook 2000
Folder = oMAPIFolder.FolderPath;
/***************************************************************/
The code works as expected on Outlook 2003 and returns the folder
selected by the user. Same piece of code return nothing when working
with Outlook 2000. Why? Is this a bug described in some KB article? Is
there a workaround for the problem?
Thanks for input!
Regards Sibi
iam launching following C# code:
/****************************************************************/
string Folder = String.Empty;
Outlook.Application oApplication = new Outlook.ApplicationClass();
Outlook.NameSpace oNameSpace =oApplication.GetNamespace("mapi");
Outlook.MAPIFolder oMAPIFolder = oNameSpace.PickFolder();
//Works on Outlook 2003 great, returns nothing on Outlook 2000
Folder = oMAPIFolder.FolderPath;
/***************************************************************/
The code works as expected on Outlook 2003 and returns the folder
selected by the user. Same piece of code return nothing when working
with Outlook 2000. Why? Is this a bug described in some KB article? Is
there a workaround for the problem?
Thanks for input!
Regards Sibi