Hey guys,

With only four months of VB experience under my belt as with many new controls I find myself not able to instantly comprehend the full use of a new control and arrays seem to be no different. I come to this forum for the experience that is offered and outside input that can see very very stupid newbie mistakes that I over look in trying to comprehend it.

I have made a small array and For... Next statement and would like it if someone could just give me a simple break down line by line so I can get a starting point in understanding the use of the counter that enables to gather input from a user and put that information into the array. Feel free to help out.

Code:
Dim intArray(19) as Integer
Dim howmany as Integer
Dim count as integer

For count = 0 to 19

howmany = CInt(InputBox("Please input how many fish " & ControlChars.CrLf _
& "you caught on each trip."))
ListBox1.Items.Add(intArray(howmany))
count += 1
Next count
Thanks