Ok. I want a listview has above properties. Is it possible ?
In fact i have a database which have a field is image ( binary array)
I want a listview displaymember is name and value member is image.
;)
Printable View
Ok. I want a listview has above properties. Is it possible ?
In fact i have a database which have a field is image ( binary array)
I want a listview displaymember is name and value member is image.
;)
The ListView control doesn't support data-binding. It has no DataSource property, so of course it has no DisplayMember or ValueMember. You should either use a DataGridView, or else use the ExrendedListView control from here.