A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Moving messages to "Deleted Items" folder



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old April 21st 09, 10:35 PM posted to microsoft.public.outlook.program_addins
Gabriel
external usenet poster
 
Posts: 13
Default Moving messages to "Deleted Items" folder

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  
Old April 22nd 09, 06:27 AM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Moving messages to "Deleted Items" folder

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  
Old April 23rd 09, 08:46 PM posted to microsoft.public.outlook.program_addins
Gabriel
external usenet poster
 
Posts: 13
Default Moving messages to "Deleted Items" folder

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


All times are GMT +1. The time now is 11:21 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.