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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 27942 - 27971 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
27962
Dmitry is of course correct. Ken Slovak Slovak Technical Services, Inc. _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf...
Ken Slovak
kenslovak2000
Offline Send Email
Aug 21, 2009
5:13 pm
27963
I've never seen the Xobni code either, all my consultations for them have been with c# OOM samples, or Redemption samples, or just discussing ways of doing...
Ken Slovak
kenslovak2000
Offline Send Email
Aug 21, 2009
5:16 pm
27964
I have created several pst files with folders in each of them. I have 25 different rules set up to move my emails from my inbox to the appropriate folder. For...
Joe
feihu_aiwei
Offline Send Email
Aug 22, 2009
1:02 am
27965
We are in the process to upgrade our Redemption version and a question related to this. Is there a way programmatically to check the version of Redemption...
Terje Kristiansen
terje252003
Offline Send Email
Aug 24, 2009
6:33 am
27966
You can create an instance of the MAPIUtils or RDOSession object and check the value of the Version property. From: outlook-dev@yahoogroups.com...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Aug 24, 2009
7:11 am
27967
I found the way to check the Version of Redemption Dim Session as RDOSession Dim strVersion as String Set Session = CreateObject("Redemption.RDOSession") ...
Terje Kristiansen
terje252003
Offline Send Email
Aug 24, 2009
7:24 am
27968
Hallo Are there anyone who knows if there are a possibility to call an Outlook macro (stored in VBAProject.otm file) from a VSTO3 addin Best from terje...
Terje Kristiansen
terje252003
Offline Send Email
Aug 24, 2009
9:19 am
27969
If the macro is in the ThisOutlookSession class and is declared as Public then you can call it using Application.WhateverTheMacroNameIs(). Note that although...
Ken Slovak
kenslovak2000
Offline Send Email
Aug 24, 2009
12:43 pm
27970
I'm not sure what this has to do with Outlook development issues, but there are a few possibilities for you to look at. If there is an error in a rule it may...
Ken Slovak
kenslovak2000
Offline Send Email
Aug 24, 2009
12:43 pm
27971
Thanks – it works in Outlook2007 and VSTO3 – then I have time to rewrite it for further versions. And thanks again Best from terje Fra:...
Terje Kristiansen
terje252003
Offline Send Email
Aug 24, 2009
1:49 pm
Messages 27942 - 27971 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