Guest User

Untitled

a guest
Apr 19th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Option Explicit
  2.  
  3. Sub test()
  4.  
  5. Dim arr1() As Variant
  6. Dim arr2 As Variant
  7. arr2 = Array()
  8.  
  9. testarr1 arr1
  10. testarr2 arr1
  11.  
  12. testarr1 arr2
  13. testarr2 arr2
  14.  
  15. End Sub
  16.  
  17. Sub testarr1(ByRef arr1() As Variant)
  18.  
  19. End Sub
  20.  
  21. Sub testarr2(ByRef arr2 As Variant)
  22.  
  23. End Sub
Advertisement
Add Comment
Please, Sign In to add comment