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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 26747 - 26776 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26747
Dear All, I have several applications designed on Outlook 2003/Exchange 2003. I have a Spreadsheet control on my forms and now I am getting an error when...
Nader Abdallah
nader.abdallah@...
Send Email
Oct 5, 2006
10:36 am
26748
Hi all, I am creating an application which needs to sync with outlook. I need to sync email messages, appointments, tasks and contacts. I am new to outlook...
danikenan
Offline Send Email
Oct 9, 2006
5:03 pm
26749
In general, MAPI events are *not* designed for synchronization. If your code is running against an Exchange Server, you can use the ICS (Incremental Change...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 9, 2006
5:31 pm
26750
Hello! How to open dialog "Contact call" programmatically (VBScript)? It is possible? -- Andrew Nikolaev http://www.potolook.com...
Andrew Nikolaev
dremkin
Offline Send Email
Oct 11, 2006
11:42 am
26751
Can anyone help me convert a string to a value that I can pass to RegSetBinary? function RegSetBinary(RootKey: HKEY; Name: String; Value: Array of Byte):...
Jason Coley
jazcoley
Offline Send Email
Oct 12, 2006
10:07 pm
26752
Result := RegSetValueEx(RootKey, Name, 0, REG_BINARY, pointer(PChar(Value)), length(Value)); _____ From: outlook-dev@yahoogroups.com...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 12, 2006
10:16 pm
26753
Hmm, I can't get that to work, Key: HKEY; S: string; Value: string; S := 'Software\Microsoft\Office\11.0\Outlook\Categories\MasterList'; ...
Jason Coley
jazcoley
Offline Send Email
Oct 13, 2006
12:04 am
26754
So what exactly happens? Do you get an error? Does Value contain binary data in the format that Outlook will understand? From: outlook-dev@yahoogroups.com...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 13, 2006
12:43 am
26755
Value is a list of categories Business;Home;Personal; I get a value 6 returned by RegSetValueEx Jason From: outlook-dev@yahoogroups.com...
Jason Coley
jazcoley
Offline Send Email
Oct 13, 2006
12:58 am
26756
That keys stores data as a 0x terminated Unicode string, so what you need is var wValue : WideString; . wValue := Value; //convert ANSI string to Unicode; ...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 13, 2006
4:54 am
26757
That's it, thank you very very much. From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Dmitry Streblechenko Sent: Friday, 13...
Jason Coley
jazcoley
Offline Send Email
Oct 13, 2006
5:52 am
26758
When using the AdvancedSearch method, you need to specify the filter using a schema name, for example "urn:schemas:httpmail:importance". Where can I find a...
Xavier Shay
meink174
Offline Send Email
Oct 20, 2006
2:00 am
26759
Here is the list of properties... http://msdn.microsoft.com/library/default.asp?url=/library/en-us/e2k3/e2k3/wss_references_nsproperties.asp Here is the...
Matt Stehle
oneidwlly
Offline Send Email
Oct 20, 2006
12:34 pm
26760
The article you cited has a link to some of the schema definitions. They also should be in the Exchange SDK documentation and documented at MSDN for the...
Sue Mosher
sue_mosher_g...
Offline Send Email
Oct 20, 2006
12:34 pm
26761
Has anybody ever played with the possibility of implementing Outlook 2007 RibbonX support in an older unmanaged (say, C++) COM add-in? Or has anybody seen any...
Brad [VE3BSM]
bpsmicro
Offline Send Email
Oct 20, 2006
3:55 pm
26762
Hi Dmitry: Three months ago, you have given me a great help by guiding me to trap the New Inspector event and wrapped up the Contact for creating the command...
George Qi
kqi_nt
Offline Send Email
Oct 21, 2006
12:33 am
26763
You can loop through the selected items using the Explorer.Selection collection. Do not assume that you will only get ContactItem objects. _____ From: George...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 21, 2006
3:54 am
26764
Hi Dmitry: Could you elaborate a little as to from what event to get the Explore.Selection collection? I appreciate very much of your advices. Best Regards, ...
George Qi
kqi_nt
Offline Send Email
Oct 22, 2006
10:26 pm
26765
Hi Dmitry: According to your suggestion, I work out the routine like the following. private void OutlookEvents_ExplorerSelectionChange(object sender, object...
George Qi
kqi_nt
Offline Send Email
Oct 22, 2006
10:47 pm
26766
... phone number when it is selected in an Explorer. The following works for me (In selection change handler): // Explorer Object selObject =...
Xavier Shay
meink174
Offline Send Email
Oct 22, 2006
11:03 pm
26767
Again, do not assume that you will only have ContactItem objects in the Contacts folder. Your code will crash if you have an Outlook.DistListItem selected....
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 23, 2006
4:44 pm
26768
Hi there Is there a faster way to find the selected items in an Outlook folder than the Selection Object. I have programmed Exchange Extension addins and know...
Jason Coley
jazcoley
Offline Send Email
Oct 23, 2006
9:53 pm
26769
AFAIK ECE is the only alternative. _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Jason Coley Sent: Monday, October...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 23, 2006
9:58 pm
26770
Is it possible to create an Exchange Extension addin that gets the IExchExtCallback, say from the InstallCommands, and query that interface say from a separate...
Jason Coley
jazcoley
Offline Send Email
Oct 24, 2006
10:17 am
26771
Just another thought, I think the interface from the InstallCommands wouldn't work, but say the IExchExtCallback that gets returned OnSelectionChange, if this...
Jason Coley
jazcoley
Offline Send Email
Oct 24, 2006
10:43 am
26772
Well I tried it and it worked like a charm. In fact, amazingly faster than normal!!! In a folder with 4920 contacts to get the categories for the selected ...
Jason Coley
jazcoley
Offline Send Email
Oct 24, 2006
11:34 am
26773
Hi all, I was wondering if there is any code available for synchronizing the contacts from my PST file with the contacts of my colleagues PST files? Both of us...
Manoj Shriyan
msshriyan
Offline Send Email
Oct 24, 2006
4:56 pm
26774
That would be the hard way. The easy way would be to use a tool like SQLView (see http://www.outlookcode.com/d/database.htm#tools for links to it and others)...
Sue Mosher
sue_mosher_g...
Offline Send Email
Oct 24, 2006
5:33 pm
26775
Never cache IExchExtCallback - it is a recipe for a disaster. IExchExtCallback is only valid for the duration of the method call to which it is passed as an...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 24, 2006
5:55 pm
26776
Thanks for that info, just implemented both addins in one and all is working very well, thanks. Jason From: outlook-dev@yahoogroups.com...
Jason Coley
jazcoley
Offline Send Email
Oct 24, 2006
7:57 pm
Messages 26747 - 26776 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