Ok I will have a look at them, thanks
Unfortunately I did't find the answer I was looking for. Basic here is my code..
Dim Lsalon As ResultSet
Lsalon = mh1.Query("SELECT * FROM IQBSalons WHERE SalonOnStop <> 'Y'")
If Lsalon.IsInitialized=False Then
Msgbox("Records Not Found","Warning")
Return
Else
For i = 0 To Lsalon.RowCount - 1
Dim cSalonName As Int
Dim cSalonAddress As Int
Dim cSalonIcon As Int
cSalonName=5
cSalonAddress=8
cSalonIcon=3
Lsalon.Position = i
job3.Download("
http://xx.xxx.xxx.xxx/xxxx/SalonAppIcons/" & Lsalon.GetString(cSalonIcon))
salonName = Lsalon.GetString(cSalonName)
salonAddress = Lsalon.GetString(cSalonAddress)
salon_listView.AddTwoLinesAndBitmap(salonName,salonAddress, "
Here is where i need to get the image!!!")
Next
End If
I even tried to add to the list after the loop but if if do it that way it will repeat the last record because the JobDone only fires after the loop
Sub JobDone (Job As HttpJob)
Log("JobName = " & Job.JobName & ", Success = " & Job.Success)
If Job.Success = True Then
Select Job.JobName
Case "Job3"
'show the downloaded image
salon_listView.AddTwoLinesAndBitmap(salonName,salonAddress, job.GetBitmap)
End Select
Else
Log("Error: " & Job.ErrorMessage)
ToastMessageShow("Error: " & Job.ErrorMessage, True)
End If
' Job.Release
End Sub