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.

Messages

  Messages Help
Advanced
Messages 26787 - 26817 of 27685   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26787
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...
rogerharvest
Offline Send Email
Nov 1, 2006
9:05 pm
26788
Please show your code. If you delete the item afterwards, why import it in the first place? Why not use RDOSession.GetMessageFromMsgFile? _____ From:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 1, 2006
9:12 pm
26789
Please respond if you even remotely have seen something sounding like the following scenerio: I have an Outlook2003 com add-in application that processes...
brracing1
Offline Send Email
Nov 2, 2006
10:06 pm
26790
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...
Brad [VE3BSM]
bpsmicro
Offline Send Email
Nov 3, 2006
1:12 am
26791
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...
Bryan
brracing1
Offline Send Email
Nov 3, 2006
5:02 pm
26792
Hi All: I would like to know how to get the Contacts folder collection (default, DistributionContact, corporateContact…). I can get the default folder or...
George Qi
kqi_nt
Offline Send Email
Nov 3, 2006
6:21 pm
26793
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 ...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 3, 2006
6:32 pm
26794
Recursively loop through all the folders (starting with Namespace.Folders). If MAPIFolder.DefaultItemType == olContactItem, search the Items collection. _____ ...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 3, 2006
6:39 pm
26795
Hi Dmitry: I am using ADX for backward compatibility from www.add-in-express.com and I write the following code: try { Outlook._Folders folders = ...
George Qi
kqi_nt
Offline Send Email
Nov 3, 2006
7:06 pm
26796
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: ...
Bryan
brracing1
Offline Send Email
Nov 3, 2006
7:43 pm
26797
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...
Brad [VE3BSM]
bpsmicro
Offline Send Email
Nov 3, 2006
7:48 pm
26799
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...
sjwill56
Offline Send Email
Nov 6, 2006
1:58 am
26800
My Com-Addin runs several checks on initialization to ensure certain essential parameters (file locations etc) are valid. If these parameters are faulty, I...
bobbyray.diamond
bobbyray.dia...
Offline Send Email
Nov 6, 2006
2:04 pm
26801
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) ...
George Qi
kqi_nt
Offline Send Email
Nov 8, 2006
12:03 am
26802
MAPIFolder.Items.Add In your case, Outlook.ContactItem newContactItem = (Outlook.ContactItem)folder.Items.Add("IPM.Contact"); From: outlook-dev@yahoogroups.com...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 8, 2006
12:23 am
26803
Hi Dmitry: According to your suggestion, I have changed to following: private void AddContact(string sFromExt) { Outlook.MAPIFolder folder = ...
George Qi
kqi_nt
Offline Send Email
Nov 8, 2006
1:02 am
26804
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...
Jason Coley
jazcoley
Offline Send Email
Nov 8, 2006
1:10 am
26805
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,...
Jason Coley
jazcoley
Offline Send Email
Nov 8, 2006
3:28 am
26806
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...
terje252003
Offline Send Email
Nov 8, 2006
3:19 pm
26807
If you are creating a restriction, don't you already know the property name/id and type? _____ From: outlook-dev@yahoogroups.com...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 8, 2006
5:27 pm
26808
Get rid of the following line folder.Items.Add((object)newContactItem); the contact was added to the folder by the line above: Outlook.ContactItem...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 8, 2006
5:28 pm
26809
Hi Dmitry and Everybody: I got another clue as the creation constructor for contact item like the following: Outlook.ContactItem newContactItem = ...
George Qi
kqi_nt
Offline Send Email
Nov 8, 2006
5:29 pm
26810
Oh, and don't forget to call newContactItem.Save() after you are done setting all the properties. _____ From: outlook-dev@yahoogroups.com...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 8, 2006
5:51 pm
26811
Hi Dmitry: Thank you very much. As you said, It works like the following: Outlook.ContactItem newContactItem = ...
George Qi
kqi_nt
Offline Send Email
Nov 8, 2006
6:29 pm
26812
Event handlers in Outlook form code or an add-in?...
Sue Mosher
sue_mosher_g...
Offline Send Email
Nov 8, 2006
7:13 pm
26813
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 -...
Jason Coley
jazcoley
Offline Send Email
Nov 8, 2006
7:15 pm
26814
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 8, 2006
7:33 pm
26815
In Outlook form code Seems to be working differently if I use Add-inn (It seems to work?) terje _____ Fra: outlook-dev@yahoogroups.com...
Terje Kristiansen
terje252003
Offline Send Email
Nov 8, 2006
7:48 pm
26816
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...
Jason Coley
jazcoley
Offline Send Email
Nov 8, 2006
8:06 pm
26817
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...
Sue Mosher
sue_mosher_g...
Offline Send Email
Nov 8, 2006
9:42 pm
Messages 26787 - 26817 of 27685   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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