Sub JobDone(Job As HttpJob)
ongoingTasks.Remove(Job.JobName)
If Job.Success Then
Dim bmp As Bitmap = Job.GetBitmap ' ## heres the bitmaps...
cache.Put(Job.JobName, bmp)
If tasks.IsInitialized Then
For i = 0 To tasks.Size - 1
Dim link As String = tasks.GetValueAt(i)
If link = Job.JobName Then
'------------------------------------------- ## adapt the following code to suit your listview
' Dim iv As ImageView = tasks.GetKeyAt(i)
'iv.SetBackgroundImage(bmp)
'for example
myListView.AddTwoLinesAndBitmap2("text1", "text2", bmp, "myReturnVal")