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@...
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...
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...
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):...
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...
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; ...
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...
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...
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...
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...
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...
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...
You can loop through the selected items using the Explorer.Selection collection. Do not assume that you will only get ContactItem objects. _____ From: George...
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, ...
Hi Dmitry: According to your suggestion, I work out the routine like the following. private void OutlookEvents_ExplorerSelectionChange(object sender, object...
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....
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...
AFAIK ECE is the only alternative. _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Jason Coley Sent: Monday, October...
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...
Just another thought, I think the interface from the InstallCommands wouldn't work, but say the IExchExtCallback that gets returned OnSelectionChange, if this...
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 ...
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...
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)...
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...