Dictionary 如何将字典添加到userform中的列表框中?

Dictionary 如何将字典添加到userform中的列表框中?,dictionary,listbox,Dictionary,Listbox,这是我的字典,我想将键添加到在UserForm中创建的列表框中 Sub NewDictionary() Dim Dict As New Dictionary Dict.Add "Tubing Length", 1 Dict.Add "Flow Rate Test", 2 End Sub

这是我的字典,我想将键添加到在UserForm中创建的列表框中

Sub NewDictionary()
Dim Dict As New Dictionary
Dict.Add "Tubing Length", 1
Dict.Add "Flow Rate Test", 2
End Sub