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
2010-09-24 12:59:32
Thanks. Everything is fine except for VCard picture. How to export Picture to VCard format?
Sunil Sharma
2010-09-27 05:01:54
it's defined in RFC2426: http://www.w3.org/2002/12/cal/rfc2426.html
ctacke
2010-09-27 13:20:01