Guest User

Untitled

a guest
Aug 16th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Function PrintDict(Dict as Dictionary, Optional ByVal Stack as String = "")
  2. For Each Key In Dict.Keys()
  3. If TypeOf Dict(Key) Is Dictionary Then
  4. Debug.Print Stack & Key & ":"
  5. PrintDict Dict(Key), Stack & " "
  6. Else
  7. Debug.Print Stack & Key & ": " & Dict(Key)
  8. End If
  9. Next
  10. End Function
Add Comment
Please, Sign In to add comment