How do you convert an array of variant into an array of string?
dim keys(-1) as Variant
dim skeys(-1) as string
keys = dic.keys
for each key as string in keys
skeys.append key
next
MyListBox.AddRow(skeys)
To me this seems like a lot of work just to add list of strings to a listbox.