sholana
04-25-2002, 10:32 AM
I am using arrays in VB script.
What i need to do is combine the two arrays both have same data types and are of the same length:)
Rezner
04-28-2002, 08:22 AM
Here's a quick script I came up with to do this. With this code, the arrays don't have to be the same size. It will simply combine two individual arrays into one big one by using a dynamic third array (since you may/may not know how big the first two will be.)
<SCRIPT LANGUAGE="VBScript">
<!--
Dim intArray1(8)
Dim intArray2(9)
Dim intNewArray()
Public Sub cmdScramble_OnClick()
intValue = 1
for x = 0 to UBound(intArray1)-1
intArray1(x) = intValue
intValue = intValue + 1
next
for x = 0 to UBound(intArray2)-1
intArray2(x) = intValue
intValue = intValue + 1
next
ReDim intNewArray(UBound(intArray1)+UBound(intArray2))
for x = 0 to UBound(intArray1)-1
intNewArray(x) = intArray1(x)
next
y = 0
for x = UBound(intArray1) to (Ubound(intArray1) + UBound(intArray2))
intNewArray(x) = intArray2(y)
y = y + 1
next
for x = 0 to ubound(intNewArray)-1
msgbox intNewArray(x)
next
End sub
-->
</SCRIPT>