Does any know how to overwrite a listview entry ?
You can easily replace the text in CustomListView. You just need to get the label and change its text.
'Update CustomListView Image
Dim pnl As Panel
pnl = CustomListView1.GetPanel(thisRow)
Dim imv As ImageView
imv = pnl.GetView(1) ' the index of the view within this panel that holds the image
imv.Bitmap = LoadBitmap("myImageLocation", "myImageName") 'change the bitmap