Try redim and MoveMemory api instead.
------------------
Announcement
Collapse
No announcement yet.
Append Array
Collapse
X
-
Append Array
Is there such a command?
Is there a neat way to add one array to another without:
Code:DIM MyArray(8) DIM YourArray(6) REDIM PRESERVE MyArray(UBOUND(MyArray)+UBOUND(YourArray)) FOR i = 1 TO UBOUND(YourArray)) MyArray(UBOUND(MyArray)+i) = YourArray(i) NEXT
------------------
Kind Regards
MikeTags: None
-
Leave a comment: