![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hi, back with another newbie question. I'm writing an add-in for Outlook 2003
in VC++. I'm trying to move a message I've accessed by using the Explorer-get_Selection method to the "Deleted Items" folder, but I'm running into trouble. *Part* (hopefully all?) of the problem is I don't know what the first parameter for GetNamespace is supposed to be (I just have a placeholder there. Here's what I tried: CComPtr Outlook::_NameSpace spNamespace; CComPtr Outlook::MAPIFolder spFolder; // Need to know what to pass for first parameter: m_spApp-GetNamespace((unsigned short*)1, &spNamespace); if (spNamespace == NULL) MessageBox(NULL,"No Namespace","Namespace",MB_OK); spNamespace-GetDefaultFolder(olFolderDeletedItems, &spFolder); dispItem = NULL; mailPtr2-Move(spFolder,&dispItem); (mailPtr2 is a mail item pointer and is getting set correctly.) Outlook crashes at the GetNamespace call. Other than that, does my reasoning look sound? Let me know if I can provide more info. Thanks in advance! -Gabriel |
Ads |
#2
|
|||
|
|||
![]()
Pass "MAPI" as the parameter when calling Application.getNamspace. Yopu can
also use Application.Session. Calling MailItem.Delete will move it to theDeleted Items folder. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Gabriel" wrote in message ... Hi, back with another newbie question. I'm writing an add-in for Outlook 2003 in VC++. I'm trying to move a message I've accessed by using the Explorer-get_Selection method to the "Deleted Items" folder, but I'm running into trouble. *Part* (hopefully all?) of the problem is I don't know what the first parameter for GetNamespace is supposed to be (I just have a placeholder there. Here's what I tried: CComPtr Outlook::_NameSpace spNamespace; CComPtr Outlook::MAPIFolder spFolder; // Need to know what to pass for first parameter: m_spApp-GetNamespace((unsigned short*)1, &spNamespace); if (spNamespace == NULL) MessageBox(NULL,"No Namespace","Namespace",MB_OK); spNamespace-GetDefaultFolder(olFolderDeletedItems, &spFolder); dispItem = NULL; mailPtr2-Move(spFolder,&dispItem); (mailPtr2 is a mail item pointer and is getting set correctly.) Outlook crashes at the GetNamespace call. Other than that, does my reasoning look sound? Let me know if I can provide more info. Thanks in advance! -Gabriel |
#3
|
|||
|
|||
![]()
Thanks Dmitry!
Nice to see I was making it more complicated than it needed to be (as usual). That sorted me right out! -Gabriel "Dmitry Streblechenko" wrote: Pass "MAPI" as the parameter when calling Application.getNamspace. Yopu can also use Application.Session. Calling MailItem.Delete will move it to theDeleted Items folder. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Gabriel" wrote in message ... Hi, back with another newbie question. I'm writing an add-in for Outlook 2003 in VC++. I'm trying to move a message I've accessed by using the Explorer-get_Selection method to the "Deleted Items" folder, but I'm running into trouble. *Part* (hopefully all?) of the problem is I don't know what the first parameter for GetNamespace is supposed to be (I just have a placeholder there. Here's what I tried: CComPtr Outlook::_NameSpace spNamespace; CComPtr Outlook::MAPIFolder spFolder; // Need to know what to pass for first parameter: m_spApp-GetNamespace((unsigned short*)1, &spNamespace); if (spNamespace == NULL) MessageBox(NULL,"No Namespace","Namespace",MB_OK); spNamespace-GetDefaultFolder(olFolderDeletedItems, &spFolder); dispItem = NULL; mailPtr2-Move(spFolder,&dispItem); (mailPtr2 is a mail item pointer and is getting set correctly.) Outlook crashes at the GetNamespace call. Other than that, does my reasoning look sound? Let me know if I can provide more info. Thanks in advance! -Gabriel |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to Delete Folders from Outlook 2007 "Deleted Items" Folder. | [email protected] | Outlook and VBA | 0 | December 27th 07 02:38 PM |
How to Delete Folders from Outlook 2007 "Deleted Items" Folder. | [email protected] | Add-ins for Outlook | 0 | December 27th 07 02:34 PM |
recovering messages from 'Deleted Items' folder after "Empty 'Deleted Items' Folder" used | [email protected] | Outlook Express | 1 | August 23rd 07 02:55 PM |
Moving sent items instead of copying them to "Sent items" folder | Catalin | Outlook and VBA | 3 | November 3rd 06 11:47 AM |
Moving mail items into an "Archive" folder | Corey Thompson | Outlook and VBA | 4 | June 17th 06 09:58 AM |