Probably, a very easy question. How do you copy an array om VBScript? E.g. you have a(100,2) with data and an empty b(100,2) which you need to fill with the replica of a(). ---
---
---
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim A(10), B(10)
A(0) = 3
A(9) = 342
B = A
MsgBox CStr(B(9))
Dim A(10), B
A(0) = 3
A(9) = 342
B = A
MsgBox CStr(B(9))
Dim A(10), B
A(0) = 3
A(9) = 342
B = A
MsgBox CStr(B(9))
B = 17
MsgBox CStr(B(9))
Dim A(10), B
A(0) = 3
A(9) = 342
B = A
MsgBox CStr(B(9))
A = 17
MsgBox CStr(A(9))