Originally posted by toytoy
If i have a list of arrays, how to go about viewing every individual of it...

Say inside each of the array has this content:

Name: OO
Age: XX

how to you guys present the dynamic arrays or arrays on one form in your Window application......

Thanks
huh?

Do you mean you want to display the contents of an array?

Code:
Dim i as Integer
Dim Array(2) as String

Array(0) = "Name: OO"
Array(1) = "Age: XX"

For i = 0 to UBound(Array)
  Console.Writeline(Array(i)
Next