ok i found this .
It is in vb6 and its not using any kind of Active x control
http://img515.imageshack.us/img515/8...shot002wm3.png
So how did he get the image in there?
Printable View
ok i found this .
It is in vb6 and its not using any kind of Active x control
http://img515.imageshack.us/img515/8...shot002wm3.png
So how did he get the image in there?
Place an image inside of an ImageList control.
Set the ListView Image Lists Tab to use the Small Icon ImageList
When adding an item to the ListView set the small icon to the image you would like to use from the ImageList control.
Code:
Set lvwItem = ListView1.ListItems.Add(, , "ListView Text",,"ImageName")
i'm not talking about the small image... i am talking about the image he got in hes listviewQuote:
Originally Posted by Ace
Are you talking about adding 'icons' to items in a listview? You will need an ImageList and set the index when adding a listitem to the listview...
The listview has a picture property. Set that to the bkg bitmap you want. This presents a problem when the listview is scrolled. Therefore, if the listview will have scrollbars, you want the bitmap to probably be exactly the size of the listivew client area, then set the PictureAlignment property = Tile.