Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试在列表框中调用删除项目时,我收到“-2147467259 (80004005)”未指定错误。
我的 rowsource 属性是空白的。我最初通过 .additem 在模块中添加项目,然后从列表框所在的表单中调用以下代码:
ListBox1.RemoveItem CInt(index)
得到该行的错误。
您尝试删除的项目已被选中。在尝试删除项目之前添加以下语句
Listbox1.Selected(index) = false
只需将您的 FM20.DLL 替换为版本 15。