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 » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

opening new custom Message form



 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old January 16th 06, 10:32 AM posted to microsoft.public.outlook.program_forms
Melbin
external usenet poster
 
Posts: 7
Default opening new custom Message form

I have created my custom Message form. Now I want display my new custom form
when a user open an existing Mail Message. I've write this code that caugth
new
inspector event:
void __stdcall CSampleAddin::NewInspector(IDispatch* pdispInspector)
{
_Inspector *pInsp = (_Inspector *)pdispInspector;
IDispatch *pCurrentItem;
hr=pInsp-get_CurrentItem(&pCurrentItem);
_MailItem *pMailItem = (_MailItem *) pCurrentItem;
BSTR newMsgClass,oldMsgClass;
_bstr_t newMsgClass_T (_T("IPM.Note.sampleform"));
newMsgClass = newMsgClass_T.copy();
hr=pMailItem-put_MessageClass(newMsgClass);
hr=pMailItem-Save();
CComPtr Outlook::_MailItem NewMailItem;
hr=pMailItem-Copy((IDispatch**)&NewMailItem);
hr=NewMailItem-Save();
hr=pMailItem-Delete();
hr=NewMailItem-Display();

}

I noticed that if I don't follow this way, i.e. modify Message Class of item
with default form, copy this item in a new item with My custom form, Save
this new contact item and then delete old current item
BUT
if I only change the Message Class of current item, Outlook doesn't displays
correctly the form (displays always the default form) .

Now, with the above code when I double click on a mail message, outlook
displays two forms: one default form and one My custom form. Why is that?

I tried to use hr=pInsp-Close(olDiscard); and hr=pMailItem-Close(olDiscard);
but then also i'm getting both the forms.

Thanks a lotz in Advance,
Melbin
 




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
custom form Charlie Outlook - Using Contacts 5 March 8th 06 04:24 PM
Inserting a picture in the message body of a custom form groom Outlook - General Queries 1 February 8th 06 10:08 PM
Outlook opens Form as Email message, not Form [email protected] Outlook - General Queries 2 January 26th 06 09:54 PM
Custom form Melbin Outlook - Using Forms 1 January 24th 06 12:17 PM
Custom Form One-Off Fix? Boyd Outlook - Using Forms 3 January 11th 06 04:22 PM


All times are GMT +1. The time now is 07:59 AM.


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.