Hi,
I had used global dictionary to transfer the array between action
Use the below code for reference and implement it as per ur requirement
Code in Action1:
Code:
Code in Action2:
Code:
Let me know in case of any help required.
Regards,
Sankalp
I had used global dictionary to transfer the array between action
Use the below code for reference and implement it as per ur requirement
Code in Action1:
Code:
Code:
d=Array("London","Boston","Newyork","Sanfransisco")
For i=0 to ubound(d)
GlobalDictionary.Item("Name"&i)=d(i)
Next
Code in Action2:
Code:
Code:
x=GlobalDictionary.items
For j=0 to ubound(x)
msgbox x(j)
Next
Let me know in case of any help required.
Regards,
Sankalp