Hi,
I am trying to save Inbox selected message in C:
I have used following code
string SavedMessage = "C:\\AIA\\Messa ge\\";
string strSaveName = "Test.msg";
Outlook._Applic ation olApp = new Outlook.Applica tionClass();
Outlook._NameSp ace olNs = olApp.GetNamesp ace("MAPI");Out look.MAPIFolder
oContacts = olApp.ActiveExp lorer().Current Folder;
Object selObject = olApp.ActiveExp lorer().Selecti on[1];
FileSystemObjec t fso = new Scripting.FileS ystemObjectClas s();
//selObject.SaveA s strFolderPath & strSaveName, olMSG
But I can't find SaveAs option in selObject property. What I am missing here.
Thanks
Kannan
I am trying to save Inbox selected message in C:
I have used following code
string SavedMessage = "C:\\AIA\\Messa ge\\";
string strSaveName = "Test.msg";
Outlook._Applic ation olApp = new Outlook.Applica tionClass();
Outlook._NameSp ace olNs = olApp.GetNamesp ace("MAPI");Out look.MAPIFolder
oContacts = olApp.ActiveExp lorer().Current Folder;
Object selObject = olApp.ActiveExp lorer().Selecti on[1];
FileSystemObjec t fso = new Scripting.FileS ystemObjectClas s();
//selObject.SaveA s strFolderPath & strSaveName, olMSG
But I can't find SaveAs option in selObject property. What I am missing here.
Thanks
Kannan
Comment