When I try and create a new Contact screen in OL 2003 I get the following error message: The form required to view this message can not be displayed. Contact...
Outlook 2003 sometimes has what's known as a "forms cache" problem. Clearing the cache usually fixes it. Choose Tools | Options | Other | Advanced Options |...
Anyone seeing this problem? __________________________ Hi All, I've been encountering an issue with some of my custom forms that were published with OL2000....
Does anyone know or have an example of a Outlook plug-in written in Visual C++. I don't mind VC ^ or .NET, but I don't want to be dependent on the .NET...
Try http://www.bpsmicro.com/Files/MsgDump2000.htm . Raw C++ (no ATL or .NET). There's also http://www.bpsmicro.com/Files/Vernoter.htm, which is an example...
Hi I am write a Message Store Provider. Inside the provider I can see the folder and the messages inside a folder, but when I try to open a message, I receive...
Hello! I have to develop a plugin for a knowledgemanagement tool which allows using data stored on an exchange server inside this knowledgemanagement tool. ...
Check into CDO libraries, there are a number of utilities and resources out there. Outlook Web Access is designed using CDO libraries to access the Exchange...
I am currently saving my project related emails out to a network drive in order to keep them as proeject reference material, I created a macro that passes the...
I need an example of how to create and populate a toolbar control that is similar in appearance to the "Send/Receive" button in Outlook. The control button...
When I am connected to Outlook using the Mapi Library, there are some applications that do not run until I close my app. Any suggestions as to what may be...
To all: I am writing a program in VB .NET that needs to pick up all the unread messages in the inbox then move them to a root level folder. Getting the ...
I don't know which applications you are referring to, but I have written applications that use Outlook and will not start if there is an instance of Outlook...
What exactly does not work? Assuming that the folder must be created in the default store, all you really need to do is grab the parent of one of the default...
Extract from Exchange 2000 SDK: Programming Technologies ... Applications that use Microsoft® Exchange 2000 Server can access configuration settings and data...
I found the bug. It wasn't anything to do with MAPI. I have all my calls to mapi in a worker thread, and the application that wouldn't run was doing a send...
Thanks, I found that set the PR_RTF_IN_SYNC to FALSE tells Outlook that PR_BODY and PR_RTF_COMPRESSSED is not in sync. How can I create the compressed rtf data...
Use the WrapCompressedRtfStream function to create a compressed RTF stream on top of un uncompressed stream. To create an uncompressed RTF stream, you can use...
I have the following method where I'm simply taking a CDO/MAPI folder, getting the Messages collection and then iterating over the MsgsCurrent collection. I...
Hi Michael, You can do the following to resolve your problem: // insert this Redemption.SafeContactItem msgSafe = new Redemption.SafeContactItem() msgSafe.Item...
Hi Michael, You can use the following to solve your problem: Redemption.SafeContactItem msgSafe = new Redemption.SafeContactItem() msgSafe = msgsCurrent; ...
Hi Michael, You should use the following instead as you wanted to use the mailitem and not the contactitem as per my earlier post: Redemption.SafeMailItem...
Previously I had ported my MAPI.Message code to use Redemption.SafeMail Item but the Outlook security dialog is now poping up for the bold line below. First,...