G Guest Apr 28, 2005 #1 Is there a way to retrieve all the items in a dictionary (one at a time) without specifying each item's key?
Is there a way to retrieve all the items in a dictionary (one at a time) without specifying each item's key?
S Steve Long Apr 28, 2005 #2 Yea, For Each de as DictionaryEntry in Dictionary ' do something with de Next HTH Steve