Search the web
Sign In
New User? Sign Up
outlook-dev · Outlook Development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 27932 - 27961 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
27932
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...
tgoetze
Offline Send Email
Jun 19, 2009
12:40 pm
27933
Hi, I developed outlook 2007 addon . Do i need to need to disable the uac for vista....
vinu_32123
Offline Send Email
Jun 19, 2009
1:02 pm
27934
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...
Ken Slovak
kenslovak2000
Offline Send Email
Jun 19, 2009
1:07 pm
27935
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...
Ken Slovak
kenslovak2000
Offline Send Email
Jun 19, 2009
1:10 pm
27936
You also need to explicitly set the _W flavor of the properties, i.e. PR_DISPLAY_NAME_W. Checking whether parent store actually supports Unicode...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jun 19, 2009
2:54 pm
27937
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. ...
tgoetze
Offline Send Email
Jun 20, 2009
12:48 am
27938
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...
Ken Slovak
kenslovak2000
Offline Send Email
Jun 20, 2009
5:17 pm
27939
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jun 20, 2009
6:52 pm
27940
Hai Friends, kindly help me in disabling the CC and BCC option from the Outlook express / Outlook 2003 mail window Regards, MK...
MURALI KRISHNAN A
amurali_kris...
Offline Send Email
Jun 23, 2009
12:33 pm
27941
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...
Ken Slovak
kenslovak2000
Offline Send Email
Jun 23, 2009
12:48 pm
27942
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...
mr_delphi_developer
mr_delphi_de...
Offline Send Email
Jul 8, 2009
5:57 pm
27943
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...
Ken Slovak
kenslovak2000
Offline Send Email
Jul 8, 2009
6:04 pm
27944
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:...
mr_delphi_developer
mr_delphi_de...
Offline Send Email
Jul 14, 2009
2:00 pm
27945
It is not exposed because Outlook 2000 does not have that property. Import the type library on a machine that has Outlook 2003 installed. From:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jul 14, 2009
2:10 pm
27946
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. ...
Ken Slovak
kenslovak2000
Offline Send Email
Jul 14, 2009
2:11 pm
27947
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...
MURALI KRISHNAN A
amurali_kris...
Offline Send Email
Aug 7, 2009
12:54 pm
27948
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...
Ken Slovak
kenslovak2000
Offline Send Email
Aug 7, 2009
1:05 pm
27949
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...
richardk45a
Offline Send Email
Aug 20, 2009
9:08 pm
27950
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...
John Warner
batesview
Offline Send Email
Aug 20, 2009
10:32 pm
27951
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...
Ken Slovak
kenslovak2000
Offline Send Email
Aug 20, 2009
10:36 pm
27952
Hi, I want to write a windows service to read the pst file. Is it possible to read pst file when outlook is not opened....
vinu_32123
Offline Send Email
Aug 21, 2009
12:52 pm
27953
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...
Ken Slovak
kenslovak2000
Offline Send Email
Aug 21, 2009
1:12 pm
27954
but for Xobini outlook addon to sychronize the mails they run windowservice i.e xobiniservice. Thanks & Regards Vinod ... From: Ken Slovak <kenslovak@...>...
y vinod kumar reddy
vinu_32123
Offline Send Email
Aug 21, 2009
1:44 pm
27955
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:...
y vinod kumar reddy
vinu_32123
Offline Send Email
Aug 21, 2009
1:44 pm
27956
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Aug 21, 2009
2:43 pm
27957
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 ...
John Warner
batesview
Offline Send Email
Aug 21, 2009
3:46 pm
27958
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...
Ken Slovak
kenslovak2000
Offline Send Email
Aug 21, 2009
4:05 pm
27959
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...
richardk45a
Offline Send Email
Aug 21, 2009
4:41 pm
27960
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Aug 21, 2009
4:59 pm
27961
Thanks, that answers the question. John Warner From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Ken Slovak Sent: Friday,...
John Warner
batesview
Offline Send Email
Aug 21, 2009
5:02 pm
Messages 27932 - 27961 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help