ник: Explorer
не поленился - в хелпе есть, ну в принципе по логике и должно быть - просто действительно не помню уже точно :)
The following code loops through each element in an array and sets the value of each to the value of the index variable I.
Dim TestArray(10) As Integer, I As Variant
For Each I In TestArray
TestArray(I) = I
Next I
|