我正在尝试更新 VBA 模块以使用System.Windows.Forms.FolderBrowserDialog
该类。我声明我的对象如下:
Dim MyFolderBrowser As New System.Windows.Forms.FolderBrowserDialog
运行这个给了我错误User-defined type not defined
。我认为编译器不知道该类,所以我尝试去Tools > References
并添加Systems_Windows_Forms
,但我仍然遇到同样的错误。有谁知道我在这里想念什么?我是否也需要在我的代码中引用该库?