![]() |
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
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 |