arraylist reading?

rangerbud249

Active member
Joined
Aug 18, 2004
Messages
27
Programming Experience
Beginner
I have structures that I am filling with data. Then i fill an arraylist with all the structures. then Im trying to collect all the data but im getting an error.

can someone help.

this is how im retreiving it.
Dim item As header
For Each item In MyWO
mysst += item.filename
Next
Dim item1 As level1
Try
For Each item1 In MyWO
mysst += "|" & item1.question
Next
Catch ex As Exception
mysst += "| "
End Try

any help is good
Jose
 
Back
Top