At 5:51 PM -0700 9/1/06, Phil M wrote:
I don't remember... is there a syntax to allow you to traverse each item in the Dictionary?

Try something like this:

  For Each key As Variant In myDictionary.Keys
    MsgBox myDictionary.Value(key)
  Next

dict.Keys returns an array of the keys

dict.Values returns an array of the values

Regards,
Joe Huber
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to