ListView from ControlsExDevice1.6 for Contacts

Paulsche

Well-Known Member
Licensed User
Longtime User
Hi Agraham,

I would like a contact list with the ListView from ControlsExDevice1.6 create, the display of the name works, but the photos do not work.

lv.AddLargeImage(lv.Image(AppPath & "\offlineuser.png"))
lv.AddItemArrayWithImage(lvarray(),1)

' is ok

how do I do it with contact.getpicture?
Have you sent me a few lines of code?

I am in despair !

Thanks
 

Paulsche

Well-Known Member
Licensed User
Longtime User
Doesn't this work?

lv.AddLargeImage(contact.getpicture)

If not is there an error message?


how it works, thanks.

Error: lv.AddLargeImage(lv.image(contact.getpicture))

OK: lv.AddLargeImage(contact.getpicture)
 
Top