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

Outlook - synchronize contatcs by visual basic aplicaton



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old December 5th 07, 09:22 AM posted to microsoft.public.outlook.program_vba
Markus Brunner
external usenet poster
 
Posts: 3
Default Outlook - synchronize contatcs by visual basic aplicaton

Hi
I've made a visual basic programm to save contacts in an access application.

Afterwoards I exporting the contact to outlook.

If the contact exits, I have to delet them and then I creating a new one,
but I loosing now informations, which were made in the contact.

How could I synchronize contacts?

Many tanks for your help.

Regards

Markus
  #2  
Old December 5th 07, 05:52 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Outlook - synchronize contatcs by visual basic aplicaton

The simplest solution would be to look at the modified dates of a contact in
Access and Outlook (not even close to being 100% fool proof) and decide
which contact is the newest based on these dates.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Markus Brunner" wrote in message
...
Hi
I've made a visual basic programm to save contacts in an access
application.

Afterwoards I exporting the contact to outlook.

If the contact exits, I have to delet them and then I creating a new one,
but I loosing now informations, which were made in the contact.

How could I synchronize contacts?

Many tanks for your help.

Regards

Markus



  #3  
Old December 6th 07, 07:37 AM posted to microsoft.public.outlook.program_vba
Markus Brunner
external usenet poster
 
Posts: 3
Default Outlook - synchronize contatcs by visual basic aplicaton

Hi Dimitry

Many thanks for your reply.

One of the main problem for me is the saving of the new contact. I loosing
informations like picture, exchange ..... I do not have any informations in
the view in access. There are only: FirstName, name, adress ....

How could I save only this updatet informations to the existing contact? The
EntryID is read only.

Many thanks

Regards

Markus


"Dmitry Streblechenko" wrote:

The simplest solution would be to look at the modified dates of a contact in
Access and Outlook (not even close to being 100% fool proof) and decide
which contact is the newest based on these dates.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Markus Brunner" wrote in message
...
Hi
I've made a visual basic programm to save contacts in an access
application.

Afterwoards I exporting the contact to outlook.

If the contact exits, I have to delet them and then I creating a new one,
but I loosing now informations, which were made in the contact.

How could I synchronize contacts?

Many tanks for your help.

Regards

Markus




  #4  
Old December 6th 07, 02:44 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Outlook - synchronize contatcs by visual basic aplicaton

You should not be deleting an existing contact and re-creating a new one.
For an existing contact, you only need to update the fields that you are
aware of; there is no reason to modify any other fields.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Markus Brunner" wrote in message
...
Hi Dimitry

Many thanks for your reply.

One of the main problem for me is the saving of the new contact. I loosing
informations like picture, exchange ..... I do not have any informations
in
the view in access. There are only: FirstName, name, adress ....

How could I save only this updatet informations to the existing contact?
The
EntryID is read only.

Many thanks

Regards

Markus


"Dmitry Streblechenko" wrote:

The simplest solution would be to look at the modified dates of a contact
in
Access and Outlook (not even close to being 100% fool proof) and decide
which contact is the newest based on these dates.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Markus Brunner" wrote in message
...
Hi
I've made a visual basic programm to save contacts in an access
application.

Afterwoards I exporting the contact to outlook.

If the contact exits, I have to delet them and then I creating a new
one,
but I loosing now informations, which were made in the contact.

How could I synchronize contacts?

Many tanks for your help.

Regards

Markus






  #5  
Old December 7th 07, 07:38 AM posted to microsoft.public.outlook.program_vba
Markus Brunner
external usenet poster
 
Posts: 3
Default Outlook - synchronize contatcs by visual basic aplicaton

Hi Dimitry

Many thanks and how? "For an existing contact, you only need to update the
fields that you are aware of.."

This is my problem.

Regards

Markus

"Dmitry Streblechenko" wrote:

You should not be deleting an existing contact and re-creating a new one.
For an existing contact, you only need to update the fields that you are
aware of; there is no reason to modify any other fields.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Markus Brunner" wrote in message
...
Hi Dimitry

Many thanks for your reply.

One of the main problem for me is the saving of the new contact. I loosing
informations like picture, exchange ..... I do not have any informations
in
the view in access. There are only: FirstName, name, adress ....

How could I save only this updatet informations to the existing contact?
The
EntryID is read only.

Many thanks

Regards

Markus


"Dmitry Streblechenko" wrote:

The simplest solution would be to look at the modified dates of a contact
in
Access and Outlook (not even close to being 100% fool proof) and decide
which contact is the newest based on these dates.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Markus Brunner" wrote in message
...
Hi
I've made a visual basic programm to save contacts in an access
application.

Afterwoards I exporting the contact to outlook.

If the contact exits, I have to delet them and then I creating a new
one,
but I loosing now informations, which were made in the contact.

How could I synchronize contacts?

Many tanks for your help.

Regards

Markus






  #6  
Old December 7th 07, 04:55 AM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Outlook - synchronize contatcs by visual basic aplicaton

I am not sure I understand why this is a problem.
Do you *always* create a new contact? Are you saying you cannot search
for/open an existing contact?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Markus Brunner" wrote in message
...
Hi Dimitry

Many thanks and how? "For an existing contact, you only need to update the
fields that you are aware of.."

This is my problem.

Regards

Markus

"Dmitry Streblechenko" wrote:

You should not be deleting an existing contact and re-creating a new one.
For an existing contact, you only need to update the fields that you are
aware of; there is no reason to modify any other fields.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Markus Brunner" wrote in message
...
Hi Dimitry

Many thanks for your reply.

One of the main problem for me is the saving of the new contact. I
loosing
informations like picture, exchange ..... I do not have any
informations
in
the view in access. There are only: FirstName, name, adress ....

How could I save only this updatet informations to the existing
contact?
The
EntryID is read only.

Many thanks

Regards

Markus


"Dmitry Streblechenko" wrote:

The simplest solution would be to look at the modified dates of a
contact
in
Access and Outlook (not even close to being 100% fool proof) and
decide
which contact is the newest based on these dates.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Markus Brunner" wrote in message
...
Hi
I've made a visual basic programm to save contacts in an access
application.

Afterwoards I exporting the contact to outlook.

If the contact exits, I have to delet them and then I creating a new
one,
but I loosing now informations, which were made in the contact.

How could I synchronize contacts?

Many tanks for your help.

Regards

Markus








 




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
Visual Basic Editor pops open yboti Outlook and VBA 2 September 12th 07 05:20 PM
Create Outlook COM add-ins in Visual Basic 2005 Express Edition Lucia Outlook and VBA 3 September 19th 06 06:31 PM
MS Visual Basic error in Outlook XP User Outlook - General Queries 3 May 7th 06 12:45 PM
Visual Basic and OE [email protected] Outlook Express 1 February 8th 06 01:35 PM
Visual Basic Editor opens automatically [email protected] Outlook and VBA 0 February 6th 06 04:53 PM


All times are GMT +1. The time now is 03:37 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.