VB Code:
  1. Dim Arr(0 To 4) as String, Obj As Object, Stri
  2. Arr(0) = "zero"
  3. Arr(1) = "one"
  4. Arr(2) = "two"
  5. Arr(3) = "three"
  6. 'looking to make the below sub
  7. ArrToObj Arr, Obj
  8. For Each Stri In Obj
  9.     Debug.Print Stri
  10. Next