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.
我想在 C# 中列出一个 excel 文件的连接。使用 COM 接口,我可以打开 excel 文件,但是如何找到参考?
我不确定如何在 C# 中执行此操作,但这可能会让您走上正确的道路。在 Excel VBA 中,您可以循环浏览工作簿对象内的 .Connections 属性。
这是一个打印到调试窗口的所有连接的示例:
Dim conn As WorkbookConnection For Each conn In ActiveWorkbook.Connections Debug.Print conn.Name Next conn