Hi,
I know types by heart (I think) but the concept of how arrays work is lost on me. So basically, an array looks something like this:
Dim DataX(3) ;where 3 equals the number of data to be stored
For x = 0 To 3
DataX(x) = x
Next
;this FOR - NEXT loop seems to cycle through the array until the number of integers (3) reaches 3, then it goes "next"
I honestly don't see how this can store data. The tutorial says you can even store strings in an array, but this is all really complicated. I'm much better-suited to types it seems, but I'd sure love to know more about arrays.
I know types by heart (I think) but the concept of how arrays work is lost on me. So basically, an array looks something like this:
Dim DataX(3) ;where 3 equals the number of data to be stored
For x = 0 To 3
DataX(x) = x
Next
;this FOR - NEXT loop seems to cycle through the array until the number of integers (3) reaches 3, then it goes "next"
I honestly don't see how this can store data. The tutorial says you can even store strings in an array, but this is all really complicated. I'm much better-suited to types it seems, but I'd sure love to know more about arrays.