D
drdave
I would like to have ten arraylists created within a loop.. is there a
conversion or something I can do to acheive this..
pseudo:
Dim counter As Integer = 0
Dim ArrName As ArrayList
'******** LOOP OVER THE VALUES ********************
For Each y in ProvArrList
ArrName = ("Arrname") & counter.ToString
Dim ArrName As New Arraylist ()
counter = (counter + 1)
Next
course this gives me error' Value of type string cannot be converted to
system.collection.arraylist
Is there another way to accomplish this??
tia
Dave
conversion or something I can do to acheive this..
pseudo:
Dim counter As Integer = 0
Dim ArrName As ArrayList
'******** LOOP OVER THE VALUES ********************
For Each y in ProvArrList
ArrName = ("Arrname") & counter.ToString
Dim ArrName As New Arraylist ()
counter = (counter + 1)
Next
course this gives me error' Value of type string cannot be converted to
system.collection.arraylist
Is there another way to accomplish this??
tia
Dave