Hi all
How R U
I need help , how i can create array inside loop,
very time I enter loop I want to create new array .. and enqeue it inside queue ,,
the new array every time hide old array ,, please help

Recommended Answers

All 4 Replies

wait a minute... you want to keep the old array aswell? so actually you want an array of arrays?

yes,
how I can use array of array ??

well i would create an arrayList and hold each array in there. like this

private holdArray as new arraylist

in your function then you add the new created array to the arraylist ( holdArray.add(myarray))

Dim p(4)() As Integer
        For i As Integer = 0 To 4
            ReDim p(i)(5)
        Next
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.