How can I prevent the Icon in the first Row of a ListCtrl ?
-
Hello, i use Icon's in the SubItems of the ListControl. But i can't suppress the appearing of the Icon in the first column. I tried : LVITEM lvi= {0}; lvi.mask = LVIF_TEXT; ... lvi.iImage = -1; -> Then i get free space in the first column. or //lvi.iImage = -1; Then i get the first Bitmap. Please help !!! Marco
-
Hello, i use Icon's in the SubItems of the ListControl. But i can't suppress the appearing of the Icon in the first column. I tried : LVITEM lvi= {0}; lvi.mask = LVIF_TEXT; ... lvi.iImage = -1; -> Then i get free space in the first column. or //lvi.iImage = -1; Then i get the first Bitmap. Please help !!! Marco
As far as I know (i posted a thread about this here a few weeks ago), it is surprisingly _not_ possible to do that (that´s what I was told in the preceding answers. So you´ll have to put a picture everywhere, or nowhere.).:( :( If someone has a counter example, I´ll be very happy ... ~RaGE();
-
As far as I know (i posted a thread about this here a few weeks ago), it is surprisingly _not_ possible to do that (that´s what I was told in the preceding answers. So you´ll have to put a picture everywhere, or nowhere.).:( :( If someone has a counter example, I´ll be very happy ... ~RaGE();
Why not have a blank entry in your image list and use that for the image? Roger Allen Sonork 100.10016 If I had a quote, it would be a very good one.
-
Why not have a blank entry in your image list and use that for the image? Roger Allen Sonork 100.10016 If I had a quote, it would be a very good one.
-
Hello, i use Icon's in the SubItems of the ListControl. But i can't suppress the appearing of the Icon in the first column. I tried : LVITEM lvi= {0}; lvi.mask = LVIF_TEXT; ... lvi.iImage = -1; -> Then i get free space in the first column. or //lvi.iImage = -1; Then i get the first Bitmap. Please help !!! Marco
Pick your choice: use icon or don't. If you do, it is in the first columne (because so has Microsoft said, and since they are allmighty and never publishes any source code that never has any bugs, you are basically f_cked). Perhaps some of the extended listboxes here at CP (in combination with a listcontrol) could do the trick?