createItemFromTemplate and VCF files

F

fartlegs

Hi there,

Does anybody know if there's a way to leverage the
createItemFromTemplate (or similar) function to create a contact item
in ol2003 using either redemption or outlook apis?

I'm using it to parse large numbers of emails - and their attachments -
and the createItemFromTemplate(filename) works fine for .msg and .eml
files but not .vcf files. When I use it against a vcf, I get the
following error thrown:

Run-time exception thrown : System.Runtime.InteropServices.COMException
- Can't open file: c:\crap\203\0011.vcf. The file may not exist, you
may not have permission to open it, or it may be open in another
program. Right-click the folder that contains the file, and then click
Properties to check your permissions for the folder.

Opening the file by double-clicking it works fine. All I'm interested
in is reading it in, then extracting the information into a legible
format, then deleting it.

Thanks in advance
Dave
 
S

Sue Mosher [MVP-Outlook]

CreateItemFromTemplate works only with .oft and .msg files. You need to use a different approach with .vcf files, either parsing their text using the vCard specification (hard) or opening them with a shell Execute command and using the resulting Inspector (easy - see http://www.outlookcode.com/codedetail.aspx?id=212
for a code sample)

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top