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 では、workbook オブジェクト内の .Connections プロパティを循環できます。
すべての接続をデバッグ ウィンドウに出力する例を次に示します。
Dim conn As WorkbookConnection For Each conn In ActiveWorkbook.Connections Debug.Print conn.Name Next conn