View Single Post
Old Jan 19th, 2007, 7:01 PM   #9
Arevos
Programming Guru
 
Arevos's Avatar
 
Join Date: Aug 2005
Location: England
Posts: 1,499
Rep Power: 5 Arevos is on a distinguished road
Quote:
Originally Posted by tristolas View Post
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"
Arevos is offline   Reply With Quote