ListView without name
-
Hello gurus, I would like to know if it is possible to create a listview control without name in order to have only the pictures in the list? If so how to do that? Or must I do my own control for that? Note: the pictures are small bitmaps loaded from files. The size of the bitmaps are either 8x8, 16x16 or 32x32. Thank you. Best regards. Fred. There is no spoon.
-
Hello gurus, I would like to know if it is possible to create a listview control without name in order to have only the pictures in the list? If so how to do that? Or must I do my own control for that? Note: the pictures are small bitmaps loaded from files. The size of the bitmaps are either 8x8, 16x16 or 32x32. Thank you. Best regards. Fred. There is no spoon.
what do u mean by without name, do u mean that there should be no column header or what ? If you want to have no column header then there is no problem but I guess it is something different....
-
Hello gurus, I would like to know if it is possible to create a listview control without name in order to have only the pictures in the list? If so how to do that? Or must I do my own control for that? Note: the pictures are small bitmaps loaded from files. The size of the bitmaps are either 8x8, 16x16 or 32x32. Thank you. Best regards. Fred. There is no spoon.
Set the
Text
property of theListViewItem
to" "
(a space) or even""
(an empty string). And set theImageIndex
to picture you want to display. -- LuisR
Luis Alonso Ramos Intelectix - Chihuahua, Mexico Not much here: My CP Blog!
-
what do u mean by without name, do u mean that there should be no column header or what ? If you want to have no column header then there is no problem but I guess it is something different....