If anyone can clarify if I've lost my mind, it would be much appreciated. I have a folder where all emails on a certain subject are kept, I scan all through...
Importing a Form Region That Is Designed in Outlook We have tried to develop a new Outlook FormRegion build by VisualStudio 2008 - with the use of VSTO 3. The...
Thanks - I look into it It can also be related to this - (but I believed VS used framework 3.5) http://support.microsoft.com/kb/926997 FIX: Error message when...
Hi again The problem seems to be how the controls are initialized From the xx.Designer.vb <System.Diagnostics.DebuggerStepThrough()> Protected Overrides Sub ...
I hired someone to write a program for my clients which extracts certain information from emails in Outlook. The program is written in VB6; the interface is...
When you say nothing is working if you just add a message box to your Click event handler, what exactly isn't working? Any exceptions? Does the message box...
In general no code changes are required for code that worked in Outlook 2003 to run on Outlook 2007. I've made very few changes to any of my older code, mostly...
I'm just playing around with form regions on Outlook 2007. Has anyone got these working with a VB6 COM add-in? I can't work out how to access the form region's...
Thank you Ken, that was enormously helpful. If you mentioned that Form Regions can be accessed via a VB6 COM Add-In in your Outlook 2007 Programming book, then...
The book concentrated on .NET code since that's what my publisher wanted (in addition to lots of VBA examples). Everything that can be accessed using .NET code...
Outlook died when tring to set the property value of "Body" or "HTMLBody" with the "MailItem" object hi, all, At first, i though the "MailItem" object was...
Thanks for ur suggestion. Firstly, I have no idea not to use outlook object on the secondary threads, just because i need to handle hot key event, in other...
You can use as many threads as your application needs, except that you cannot use the Outlook object model on any thread other than the main one. If a...
Hello, Thanks in advance for your support. I tried using this code found elsewhere on these group pages and a similar one found at OutlookCode.com Can you tell...
Where is this Web code running? Outlook code requires that it be run on the client machine since that's where Outlook is installed and where at least one...
1. You must close the Inspector to release the underlying item. RDO doesn't really have any UI related functionality since it's an Extended MAPI wrapper. 2....
I said it was possible. The Close event doesn't tell you if the item is closed using the olDiscard setting, in a form or in an addin, BTW. Try Dim RdoSession...
Also keep in mind that if you are mixing Outlook Object Model and Redemption, SafeAppontmentItme would be a better choice than RDOAppoimtmentItem: all...
Thanks Be aware of that this function only should be used it “Item_Close” event = olDiscard. So I think I have to access the Item after/when it is closed...
When I try to use RDO – next time I try to open the item (if I do it directly as the first item after closing it) everything Is OK until – I try to save: ...
This is hardly surprising – both Outlook and RDO open the message independently, the first call to Save will be successful, the second caller however will...