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?