Re: How can i put a picture into vcard [delphi] (General questions)
Hi,
You can try something like this:
Use an Image control, and load a Picture in it. Then use something like this to load picture into Photo property:
[code]var
pic1 : IPictureDisp;
begin
GetOLEPicture(Image1.Picture, pic1);
wodXMPP1.VCard.Photo := pic1;
end;[/code]
Hope this helps.
Regards,
Damba
Complete thread:
- How can i put a picture into vcard [delphi] - Boboc Ionut, 2008-12-15, 22:33
- Re: How can i put a picture into vcard [delphi] - wodDamir, 2008-12-15, 23:54
- Re: How can i put a picture into vcard [delphi] - Boboc Ionut, 2008-12-16, 08:07
- Re: How can i put a picture into vcard [delphi] - wodDamir, 2008-12-15, 23:54