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

Custom form



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 11th 06, 09:44 AM posted to microsoft.public.outlook.program_forms
Melbin
external usenet poster
 
Posts: 7
Default Custom form

I made a custom form and published it following these steps,

1. Open a new mail message. On the Tools menu, click Forms and then click
Design This Form.
2. Click the (P.2) page of the form. On the Form menu, click Control
Toolbox. Use the Control Toolbox to add a Command Button to page P.2.
3. On the Tools menu, click Forms and then click Publish Form As. Select the
Inbox as the destination, enter MyForm as the Display Name, and then click
Publish. Choose either Yes or No when you are prompted about sending the form
definition with the item.
4. Close and don't save changes to the form.
5. On the Actions menu, click New MyForm.
6. Click the P.2 page of the form and click the button.

I verified this by clicking the Actions menu and saw New MyForm listed at
the bottom of the menu.

I am doing in vc++ 6.0 and using the Com dll.i wnat to show my custom form
instead of the default form which i want to do in the Inspector event since i
have to do thsi for some particular messages only.

// -------------showing the custom form---------------
_bstr_t bstrName_T (_T("MAPI"));
BSTR bstrName;
bstrName = bstrName_T.copy();
CComPtr Outlook::_NameSpace olNs;
m_spApp-GetNamespace(bstrName,&olNs);
CComQIPtr Outlook::MAPIFolder oInbox;
Outlook::OlDefaultFolders enumODF = olFolderInbox;
hr = olNs-GetDefaultFolder(enumODF,&oInbox);
CComQIPtr Outlook::_Items NewItems;
hr=oInbox-get_Items(&NewItems);
CComVariant nItem("IPM.Note.MyForm");
IDispatch* itm;
hr=NewItems-Add(nItem,&itm);
_NoteItem *pNoteItem = (_NoteItem *) itm;
CComVariant vEmpty(DISP_E_PARAMNOTFOUND, VT_ERROR);
hr=pNoteItem-Display(vEmpty);
//-------------------------------------------------------------

I use this in the NewInspector event but this is giving some Access
violation error in hr=pNoteItem-Display(vEmpty);
Anybody have any idea why is it so?Is this the correct way of doing?My idea
is to show the custom form instead of the default form.

Thanks a lotz in Advance
Melbin

Ads
  #2  
Old January 24th 06, 12:17 PM posted to microsoft.public.outlook.program_forms
Melbin
external usenet poster
 
Posts: 7
Default Custom form

I got it.


"Melbin" wrote:

I made a custom form and published it following these steps,

1. Open a new mail message. On the Tools menu, click Forms and then click
Design This Form.
2. Click the (P.2) page of the form. On the Form menu, click Control
Toolbox. Use the Control Toolbox to add a Command Button to page P.2.
3. On the Tools menu, click Forms and then click Publish Form As. Select the
Inbox as the destination, enter MyForm as the Display Name, and then click
Publish. Choose either Yes or No when you are prompted about sending the form
definition with the item.
4. Close and don't save changes to the form.
5. On the Actions menu, click New MyForm.
6. Click the P.2 page of the form and click the button.

I verified this by clicking the Actions menu and saw New MyForm listed at
the bottom of the menu.

I am doing in vc++ 6.0 and using the Com dll.i wnat to show my custom form
instead of the default form which i want to do in the Inspector event since i
have to do thsi for some particular messages only.

// -------------showing the custom form---------------
_bstr_t bstrName_T (_T("MAPI"));
BSTR bstrName;
bstrName = bstrName_T.copy();
CComPtr Outlook::_NameSpace olNs;
m_spApp-GetNamespace(bstrName,&olNs);
CComQIPtr Outlook::MAPIFolder oInbox;
Outlook::OlDefaultFolders enumODF = olFolderInbox;
hr = olNs-GetDefaultFolder(enumODF,&oInbox);
CComQIPtr Outlook::_Items NewItems;
hr=oInbox-get_Items(&NewItems);
CComVariant nItem("IPM.Note.MyForm");
IDispatch* itm;
hr=NewItems-Add(nItem,&itm);
_NoteItem *pNoteItem = (_NoteItem *) itm;
CComVariant vEmpty(DISP_E_PARAMNOTFOUND, VT_ERROR);
hr=pNoteItem-Display(vEmpty);
//-------------------------------------------------------------

I use this in the NewInspector event but this is giving some Access
violation error in hr=pNoteItem-Display(vEmpty);
Anybody have any idea why is it so?Is this the correct way of doing?My idea
is to show the custom form instead of the default form.

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
Custom Form Frustration Frustrated to the MAX! Outlook - Using Contacts 4 February 14th 06 06:35 PM
Using a custom contacts form kwilson Outlook - Using Contacts 2 February 2nd 06 03:27 PM
Custom Form One-Off Fix? Boyd Outlook - Using Forms 3 January 11th 06 04:22 PM
Custom Form One-Off Fix? Boyd Outlook - Using Forms 1 January 9th 06 07:05 PM


All times are GMT +1. The time now is 03:49 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.