I am able to add recipients when the data is ASCII, but when I attempted to change the code to handle more diverse values (e.g. Japanese display names), the...
Did you change the property tag you're looking at? If a string property tag ends with 0x1E it's a PT_STRING8 property, for Unicode you'd have a property tag...
No you don't. If your addin requires admin permissions to install (most likely) then make sure that it can be registered to HKLM instead of to HKCU so that all...
That was it (needed to use _W property). I am not checking for Unicode support, but it is working....meaning now I can see the values as expected in Outlook. ...
I'm not sure about MFCMAPI, I haven't used it in many years, but in OutlookSpy you get the same thing. To open an OutlookSpy window for Unicode hold down the...
Whether you set the _A or _W flavor of a given property, the underlying message store provider must store only once instance of the property and should be able...
Outlook Express is completely unrelated to Outlook and is out of scope for this list. It's also not very programmable at all, if what you want is possible it...
Need to access Appointment property by propertyname. How to do that? Let's say I want to write a function and pass a property name and then return the value of...
Use the ItemProperties collection for that, it can take a property name instead of an index value. VBA, where oAppt == an open appointment item: Dim Result As...
The ItemProperties property is not exposed in the default Delphi imported Outlook2000.pas file. Here is how I'm doing it with succcess: const EmptyDispParams:...
If the interface provided only covers Outlook 2000 then anything added after that won't be there. ItemProperties was added to the OOM later than Outlook 2000. ...
Hai, I have created a custom mail message and encountering "You cannot create an item of this type in this folder" while trying to make the custom form as the...
Messages are designed to be sent, not saved in a folder. You can't make a message form the default for a folder. In most cases it is not a good idea to check...
This is a shoutout to anyone familiar with the enigmatic "iTunes Outlook Addin". I'm wondering if anyone knows how the Notes Sync feature decides which Notes...
Can't help you. I allowed iTunes to do its add-on thing to Outlook a couple years ago, major hosing of Outlook. After many weeks of uninstalling and disabling...
I never saw Apple's code, I worked with their dev at a higher level. Where he couldn't figure out what I was talking about (most of the time) I supplied him...
A PST file can be read without Outlook open, but you still need to use some API that can work with a PST file. Something like Extended MAPI or CDO 1.21 or...
but for Xobini outlook addon to sychronize the mails they run windowservice i.e xobiniservice. Thanks & Regards Vinod ... From: Ken Slovak <kenslovak@...>...
can u provide sample code how to read pst file without opening outlook by using redemption or outlook interop object model. Thanks & Regards Vinod ... From:...
The following script will create or open a PST store, ensure all the default folders are present and create a contact in the default Contacts folder. set...
What is the advantage of Redemption.rdo vs CDO for reading a pst file? John Warner From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On ...
Redemption can be used with managed or unmanaged code, CDO can only be used with unmanaged code. Redemption has a richer object model than CDO. If the CDO is...
Thanks for the quick response! I wish they would have simply contracted development of their add-in out to you or another expert ;-). All too often I've seen...
Most importantly, I don't think you can use CDO 1.21 to add new or existing PST files to any profiles. You can access PST files that were already added to a...
Thanks, that answers the question. John Warner From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Ken Slovak Sent: Friday,...