If there is no unique code for a contact in outlook, How can we use it in other apps? (2 Viewers)

prabha_friend

Prabhakaran Karuppaih
Local time
Today, 14:03
Joined
Mar 22, 2009
Messages
933
Especially in "Relational Database Systems" Like Ms Access or SQL Server
 
The Entry ID changes when an item is moved into another store, for example, from your Inbox to a Microsoft Exchange Server public folder, or from one Personal Folders (.pst) file to another .pst file. Solutions should not depend on the EntryID property to be unique unless items will not be moved. The EntryID property returns a MAPI long-term Entry ID. For more information about long- and short-term EntryIDs, search Microsoft Learn for PidTagEntryId.
 
What do you want to do?
In most cases the limited uniqueness of the EntryId is enough.
If it is just about uniqueness per se, you can also store the EntryId of the information store containing the contact.
If you need to track items which may be moved across different information stores, you can create a custom property and store an unique Id in there, which you define. - I think, this works, but you should verify that custom properties will be moved across different stores.
 
What do you want to do?
In most cases the limited uniqueness of the EntryId is enough.
If it is just about uniqueness per se, you can also store the EntryId of the information store containing the contact.
If you need to track items which may be moved across different information stores, you can create a custom property and store an unique Id in there, which you define. - I think, this works, but you should verify that custom properties will be moved across different stores.
Actually I am building a software tool for a Milk Vendor. In India, still many doesn't have a mobile phone at least, then only email.

I am thinking of the following:
Cstr(replace(".",cdbl(Now(),""))
But the problem is Outlook lacks Replace() in the auto-value property of a custom form
 

Users who are viewing this thread

Back
Top Bottom