I have the following:
VB Code:
  1. Private Sub cmdLargeFish_Click()
  2. Dim lvwItem   As ListItem  
  3.    Set lvwItem = ListView1.SelectedItem
  4.    If Not lvwItem Is Nothing Then
  5.       lvwItem.SmallImage = "LARGE_FISH"
  6.       Set lvwItem = Nothing
  7.    End If
  8. End Sub
  9.  
  10. Private Sub cmdIllFish_Click()
  11. Dim lvwItem   As ListItem  
  12.    Set lvwItem = ListView1.SelectedItem
  13.    If Not lvwItem Is Nothing Then
  14.       lvwItem.SmallImage = vbNullString/0 'What the heck do you put here to REMOVE/CLEAR the image??? :(
  15.       Set lvwItem = Nothing
  16.    End If
  17. End Sub
How can I remove the image from the selected item???

Woka