Is there such a command?
Is there a neat way to add one array to another without:
(I never use element 0, saves all that confusing -1 stuff)
------------------
Kind Regards
Mike
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
Mike
Comment