i have these objects:
[ , , , ,
, ]
and i need to assign them to:
var1 =
var2 =
var3 =
var4 =
var5 =
var6 =
var7 =

i've tried :

Public Structure extracted
    Dim name As String
    Dim score As Double
End Structure
Dim test(6) As extracted
test(0) = ret(0)

and etc

but it can't work:(

anyone can help?

Recommended Answers

All 3 Replies

ret(0)(1)

What is ret(0)?

ret is the array i defined to accept the value from the tuple
anyway, i've solved the prob by assigning the tuple to a multidimensional array

ret(0)(1)

thanks:)

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.