views:

103

answers:

1

How to Export Windows Mobile Contacts to VCard using .NET (C#)? I need to export Contacts from Windows Mobile and restore it to Windows (Desktop) which uses VCard format.

A: 

VCards are a very simple format text document. You then can use the Microsoft.WindowsMobile.PocketOutlook.Contact class to extract the contact information and then use something like a TextWriter to create the VCard file.

ctacke
Thanks. Everything is fine except for VCard picture. How to export Picture to VCard format?
Sunil Sharma
it's defined in RFC2426: http://www.w3.org/2002/12/cal/rfc2426.html
ctacke