Hi All,
I have a need to insert images into subitems of a listview control in columns other than the first. It is relatively easy to add images to the Listview column header using: $lvwCtrl->InsertColumn(-index => 0, -subitem => $i, -text => "", -image => 0); # where -image references an imagelist item However there seems to be no provision to add images to InsertItem that I can find; however I did find an article that customises the Listview to provide this functionality with VB. Is it possible to adapt the example to provide the same functionality to the Win32-GUI Listview control. The code example is at: http://www.codeproject.com/cs/miscctrl/OAKListView.asp Or is this already possible and I have misinterpreted the documentation for Win32-GUI? Chris Wearn