Quote:
Originally Posted by tristolas
I also tried converting the incrementing integer("times") to string, but didn't help
|
Uh, it looks like you're still using the integer "times" to me:
Dim times As Integer
For times = 1 To 164
Dim url As String = "http://www.whatever.com/blah/"
Dim numba As String = Convert.ToString(times)
Dim fileName As String = "ring" + times + ".jpg" Shouldn't this be:
Dim fileName As String = "ring" + numba + ".jpg"