Export of items

  • Thread starter Thread starter semut
  • Start date Start date
S

semut

Hello,

I would like export some items (appointment, contact, task or anything).
And then reimport back to another PC. Will the entry ID of the item export
be the same in the new PC after import into it. If it wasn't, anyway to make
it to be the same.


thanks.
 
Semut, a simple test would give you the answer.

dim oMsg1 as MailITem
dim oMsg2 as MailItem

Set oMsg1=Application.ActiveExplorer.Selection(1)
oMsg1.SaveAs "c:\test.msg"
Set oMsg2=Application.CreateItemFromTemplate("c:\test.msg")
oMsg2.Save
debug.print oMsg1.EntryID=oMsg2.EntryID

The EntryID is read-only.
 
To add to what Michael said, importing creates a new item. Therefore, it will have a different EntryID.
 
Back
Top