A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Documentation about duplicates



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old July 21st 06, 02:49 PM posted to microsoft.public.outlook.program_vba
John
external usenet poster
 
Posts: 40
Default Documentation about duplicates

Where would I find programming documentation how Outlook defines what
duplicates are?

My goal is to synchronize the PST files between two laptops. However, I need
to have a clear idea how Outlook handles duplicates. This would also include
how Outlook handles the items in the Activities tab.

Your feedback is appreciated.


Ads
  #2  
Old July 21st 06, 03:03 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Documentation about duplicates

Where would I find programming documentation how Outlook defines what
duplicates are?


That behavior is not documented.

how Outlook handles the items in the Activities tab.


Outlook generates the Activities list by performing an on-demand search in the folders of the specified activities group for items containing a link in the Links collection to the current contact or one of the contact's email addresses in the To or From field. Note that copying an item to another .pst file would break any links in the Links collection.
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"John" wrote in message ...
Where would I find programming documentation how Outlook defines what
duplicates are?

My goal is to synchronize the PST files between two laptops. However, I need
to have a clear idea how Outlook handles duplicates. This would also include
how Outlook handles the items in the Activities tab.

Your feedback is appreciated.


  #3  
Old July 21st 06, 03:35 PM posted to microsoft.public.outlook.program_vba
John
external usenet poster
 
Posts: 40
Default Documentation about duplicates

So this would mean that the only way to synchronize the activities list
between two laptops is through the Exchange Server?

Does the Exchange Server handle the synchronization correctly or does
Exchange Server have some issues having this work?

Thank you for the feedback.


  #4  
Old July 21st 06, 04:20 PM posted to microsoft.public.outlook.program_vba
Charles Kenyon
external usenet poster
 
Posts: 53
Default Documentation about duplicates

When importing items (journal entries, email messages, appointments) would
there be a way to get Word to rebuild links where a contact exists in the
importing PST?
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Sue Mosher [MVP-Outlook]" wrote in message
...
Where would I find programming documentation how Outlook defines what
duplicates are?


That behavior is not documented.

how Outlook handles the items in the Activities tab.


Outlook generates the Activities list by performing an on-demand search in
the folders of the specified activities group for items containing a link in
the Links collection to the current contact or one of the contact's email
addresses in the To or From field. Note that copying an item to another .pst
file would break any links in the Links collection.
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"John" wrote in message
...
Where would I find programming documentation how Outlook defines what
duplicates are?

My goal is to synchronize the PST files between two laptops. However, I
need
to have a clear idea how Outlook handles duplicates. This would also
include
how Outlook handles the items in the Activities tab.

Your feedback is appreciated.




  #5  
Old July 21st 06, 04:32 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Documentation about duplicates

So this would mean that the only way to synchronize the activities list
between two laptops is through the Exchange Server?


That would certainly be the easiest way, but not the only way. It would be possible for a synchronization utility to relink most contacts, but I don't know of any commercial tools that do that.

Does the Exchange Server handle the synchronization correctly or does
Exchange Server have some issues having this work?


Exchange has no issues because the data is essentially identical on both machines.
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

  #6  
Old July 21st 06, 04:34 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Documentation about duplicates

Yes, it's possible to write VBA code to look at each Link.Name in an item's Links collection, search for a matching contact, create a new link, and delete the old.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Charles Kenyon" wrote in message ...
When importing items (journal entries, email messages, appointments) would
there be a way to get Word to rebuild links where a contact exists in the
importing PST?

"Sue Mosher [MVP-Outlook]" wrote in message
...

Outlook generates the Activities list by performing an on-demand search in
the folders of the specified activities group for items containing a link in
the Links collection to the current contact or one of the contact's email
addresses in the To or From field. Note that copying an item to another .pst
file would break any links in the Links collection.


  #7  
Old July 21st 06, 05:26 PM posted to microsoft.public.outlook.program_vba
Charles Kenyon
external usenet poster
 
Posts: 53
Default Documentation about duplicates

Thank you.
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Sue Mosher [MVP-Outlook]" wrote in message
...
Yes, it's possible to write VBA code to look at each Link.Name in an item's
Links collection, search for a matching contact, create a new link, and
delete the old.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Charles Kenyon" wrote in message
...
When importing items (journal entries, email messages, appointments) would
there be a way to get Word to rebuild links where a contact exists in the
importing PST?

"Sue Mosher [MVP-Outlook]" wrote in message
...

Outlook generates the Activities list by performing an on-demand search in
the folders of the specified activities group for items containing a link
in
the Links collection to the current contact or one of the contact's email
addresses in the To or From field. Note that copying an item to another
.pst
file would break any links in the Links collection.



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
duplicates when copying Norman Outlook - General Queries 0 April 17th 06 04:02 AM
Duplicates Dorian C. Chalom Outlook - General Queries 1 February 23rd 06 05:09 PM
OE DUPLICATES Judy L Outlook Express 5 February 7th 06 04:14 PM
Using Calendar to Remind people about Documentation Review Due Dat writertech Outlook - Calandaring 0 January 24th 06 08:40 PM
Incomplete documentation on the Outlook adm templates Ravi Sabharanjak Outlook - Installation 1 January 19th 06 12:41 AM


All times are GMT +1. The time now is 11:44 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.