Calling a specific Contact from command line parameter

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

In a VBA application, using the command line parameter of:

OUTLOOK.EXE /select Outlook:contacts

How can I get it to open to a specific contact within my contact list?

Thanks
 
Rob said:
In a VBA application, using the command line parameter of:

OUTLOOK.EXE /select Outlook:contacts

How can I get it to open to a specific contact within my contact list?

outlook.exe /select outlook:EntryID

Where EntryID is item identifier - a long hex number. You can read it for a
specific item using VBA or OutlookSpy.

--
Best regards,
Michal [Microsoft Outlook MVP]

http://www.codetwo.com
Share Outlook on the net without Exchange!
 
Back
Top