Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. Dim StaticArray(1 to 3, 1 to 4, 1 to 12) as variant
  2.  
  3. Dim ArrayInput() as Variant
  4. ArrayInput = Array(1,2,3,4,5)
  5. StaticArray(1,1,1) = ArrayInput
  6.  
  7. Redim Preserve StaticArray(1 to 3, 1 to 4, 1 to 12)(1 to ubound(?)+1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement