Hello. I am using Redemption to import MSG files for processing. After the file is imported, OOM methods are used to extract properties and save the file to...
Please show your code. If you delete the item afterwards, why import it in the first place? Why not use RDOSession.GetMessageFromMsgFile? _____ From:...
Please respond if you even remotely have seen something sounding like the following scenerio: I have an Outlook2003 com add-in application that processes...
What mechanism is your add-in using to create the custom properties in the first place? Are you adding to the UserProperties collection? Named MAPI properties...
Yes, I am referring to a specific app message class extended from (in this case) base class IPM.Contact. The properties are defined on the extended class at...
Hi All: I would like to know how to get the Contacts folder collection (default, DistributionContact, corporateContact…). I can get the default folder or...
You might want to show how exactly you set those properties. _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Bryan ...
Recursively loop through all the folders (starting with Namespace.Folders). If MAPIFolder.DefaultItemType == olContactItem, search the Items collection. _____ ...
The user field is updated everytime the form is opened in Outlook and saved by the user. Set user defined fields on custom Outlook form in vbscript: ...
Keep in mind that the folder collection isn't "flat". Your top-level folder (your mailbox) contains other folders. So the main collection will only see your...
Hi all - I wonder if you could help a bemused Outlook 2003 beginner? I have lots of contact in my address book. Last year I noted all those people who had...
My Com-Addin runs several checks on initialization to ensure certain essential parameters (file locations etc) are valid. If these parameters are faulty, I...
Hi All: I need to create a contact inspector based on inbound caller ID. I have created a routine like the following: private void AddContact(string sFromExt) ...
MAPIFolder.Items.Add In your case, Outlook.ContactItem newContactItem = (Outlook.ContactItem)folder.Items.Add("IPM.Contact"); From: outlook-dev@yahoogroups.com...
Hi there, I'm trying to use User Defined Fields and Restrict clauses in ExtendedMapi. How can I get the ulPropTag for User Defined Fields? I understand that I...
OK, I have this to get the named proptag, using the tab name... But how do I find out if the type is correct and to change it if ist isn't? i.e. String,...
Hello Group Is there any possibillity have to Outlook fire an Open-Event on an Appointment Item open from an extra mailbox added to my profile. When you open...
Well I'm not creating the property, just using it. In Outlook 2007 I can get the UserProperties and types, is there any way to do this in Outlook 2003 -...
I still confused - you are using which property? How do you decide which property will be used in a restriction? Do you simply let a user specify a property...
OK, I want the user to be able to add user fields to a folder using Outlook. I want my addin to be able to retrieve this list of fields and create a restrict...
Form code doesn't run by default in that scenario. See http://www.outlookcode.com/d/secforms.htm#mailboxscript ... Form code doesn't run by default in that...