[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Delphi vCard implementation
My company is shipping a product (Contact Coordinator) which is written in
Delphi and performs vCard read and write. For this purpose, we developed a
Delphi VCL. It is pretty straight forward in that it provides a TVCardFile
object, which can be read or written to a file, and a TVCard object, which
has a list of "Properties" that can be accessed to pull out the various
fields. For example, you can write code like this to assign the FN field
to a string:
MyVCardFileObject.Read('a_vcard_file.vcf');
MyString := MyVCardFileObject.Cards[0].Properties['FN'];
The objects support multiple vCards per file, but do not currently support
embedded graphics.
Is anyone on this mailing list interested in this Delphi object?
Best Regards,
Brian Holdsworth
Logic Pulse
http://www.logicpulse.com
---------------------- Contact Information -----------------------
| Contact Coordinator: http://www.logicpulse.com/logicpulse.ccd |
| vCard : http://www.logicpulse.com/logicpulse.vcf |
| |
| Try Contact Coordinator! http://www.logicpulse.com/cocohome.htm |
-------------------------------------------------------------------