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

PrepareForm Access Violation



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old August 15th 08, 02:46 PM posted to microsoft.public.outlook.program_vba
DenisSSSS
external usenet poster
 
Posts: 5
Default PrepareForm Access Violation

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:lFolderTasks);
_variant_t fd_v;
Outlook::FormDescriptionPtr fd;
Outlook::_TaskItemPtr task = ol_app-CreateItem(Outlook:lTaskItem);
fd = task-FormDescription;
_variant_t vt = fd-Name;
fd-Name = str2bstr(L"new_task_item");
fd-PublishForm(Outlook:lPersonalRegistry);

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  
Old August 15th 08, 11:48 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default PrepareForm Access Violation

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:lFolderTasks);
_variant_t fd_v;
Outlook::FormDescriptionPtr fd;
Outlook::_TaskItemPtr task =
ol_app-CreateItem(Outlook:lTaskItem);
fd = task-FormDescription;
_variant_t vt = fd-Name;
fd-Name = str2bstr(L"new_task_item");
fd-PublishForm(Outlook:lPersonalRegistry);

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


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