PeterBunde
New Member
- Joined
- Dec 7, 2016
- Messages
- 45
Fellow sufferers
I am doing something´like this:
How can I best, later, do something like, to find all the countries in the root:
BW Peter Bunde Hansen
I am doing something´like this:
Code:
inhabitants_in.Add "Norway", CreateObject("Scripting.Dictionary")
inhabitants_in("Norway").Add "Oslo", 200000
How can I best, later, do something like, to find all the countries in the root:
Code:
For each country in inhabitants_in
MsgBox("Country: " & country)
Next country
BW Peter Bunde Hansen