Hi all,
Any body know how to define and store a one dimension array in a blobal variable?
My one dimension array is initialized like :
Dim table(366)
For x=1 to 366
table(x)=0
next
because when I go through the records I need to change values in table(x).
I have tried to assigned
DTSGlobalVariables("v_table").Value = table
But I don't know how to define and initilize global variable in porpeties file. I got type mismatch error.
Anyone know how to solve this problems?
Thanks a lot.