![]() |
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
|
|||
|
|||
![]()
Hello.
We found that PrepareForm generates access violation in Office 2003 SP3. It will generate access violation if you try to call it from external process. In our case we have to call PrepareForm from uninstallation. It requires to republish custom forms. Everything worked properly till Office 2003 SP3 was released. Please, see code below that generates access violation if you execute it from external process(test application in our case). The same code works properly if you run from COM Add-in. void external_publish_access_violation() { MAPIInitialize(NULL); Outlook::_ApplicationPtr ol_app = Outlook::_ApplicationPtr(L"Outlook.Application"); Outlook::MAPIFolderPtr type_root = ol_app-Session-GetDefaultFolder(Outlook: ![]() _variant_t fd_v; Outlook::FormDescriptionPtr fd; Outlook::_TaskItemPtr task = ol_app-CreateItem(Outlook: ![]() fd = task-FormDescription; _variant_t vt = fd-Name; fd-Name = str2bstr(L"new_task_item"); fd-PublishForm(Outlook: ![]() IMAPIFormMgrPtr form_manager; IMAPIFormInfoPtr fi; ::MAPIOpenFormMgr((IMAPISessionPtr)ol_app-Session-MAPIOBJECT, &form_manager); // message class is resolved succesfully HRESULT hr= form_manager-ResolveMessageClass("IPM.Task.new_task_item", MAPIFORM_EXACTMATCH, 0, &fi); // ACCESS VIOLATION hr = form_manager-PrepareForm(0, 0, fi); } |
#2
|
|||
|
|||
![]()
In your case IMAPISession gets marshalled form the Outlook.exe process
address space, and MAPI has a few issues with marshalling, forms nad profile sections among them. Instead of using Namespace.MAPIOBJECT, call MAPILogonEx. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "DenisSSSS" wrote in message ... Hello. We found that PrepareForm generates access violation in Office 2003 SP3. It will generate access violation if you try to call it from external process. In our case we have to call PrepareForm from uninstallation. It requires to republish custom forms. Everything worked properly till Office 2003 SP3 was released. Please, see code below that generates access violation if you execute it from external process(test application in our case). The same code works properly if you run from COM Add-in. void external_publish_access_violation() { MAPIInitialize(NULL); Outlook::_ApplicationPtr ol_app = Outlook::_ApplicationPtr(L"Outlook.Application"); Outlook::MAPIFolderPtr type_root = ol_app-Session-GetDefaultFolder(Outlook: ![]() _variant_t fd_v; Outlook::FormDescriptionPtr fd; Outlook::_TaskItemPtr task = ol_app-CreateItem(Outlook: ![]() fd = task-FormDescription; _variant_t vt = fd-Name; fd-Name = str2bstr(L"new_task_item"); fd-PublishForm(Outlook: ![]() IMAPIFormMgrPtr form_manager; IMAPIFormInfoPtr fi; ::MAPIOpenFormMgr((IMAPISessionPtr)ol_app-Session-MAPIOBJECT, &form_manager); // message class is resolved succesfully HRESULT hr= form_manager-ResolveMessageClass("IPM.Task.new_task_item", MAPIFORM_EXACTMATCH, 0, &fi); // ACCESS VIOLATION hr = form_manager-PrepareForm(0, 0, fi); } |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Access to folders not originating in Outlook, in Web Access Mail | Leigh | Outlook - Installation | 1 | August 2nd 08 07:11 PM |
TaskItem.Body and AppointmentItem.Body = access violation (NULL pt | Kayako Inc. | Outlook and VBA | 0 | August 14th 07 12:36 AM |
Remote Access or shared LAN access of Outlook without using Exchange Server ???? | Synapse Syndrome | Outlook - General Queries | 8 | June 22nd 07 09:11 PM |
Remote Access or shared LAN access of Outlook without using Exchange Server ???? | Synapse Syndrome | Add-ins for Outlook | 8 | June 22nd 07 09:11 PM |
How to Fix Unhandled exception in OUTLOOK.EXE: Access Violation is | Rupang | Outlook and VBA | 1 | September 19th 06 02:41 PM |