gpt4 book ai didi

c# - 使用 C# 检查 Excel 工作簿是否具有宏

转载 作者:太空宇宙 更新时间:2023-11-03 15:10:02 26 4
gpt4 key购买 nike

我需要使用 C# 客户端浏览数百个 Excel 文件以找到那些具有宏的文件。

我已经尝试使用此处接受的答案中的代码:

Using Interop.Excel to check if Excel file contains VBA Macros

但是,此代码首先打开文件。即使在添加 _appExcel.DisplayAlerts = false

后,许多文件仍会打开弹出 Windows 和 VBA 错误消息

它也很慢。有没有更好的方法来解决这个问题,最好不要先打开 Excel 文件?

我在 MSDN 上查找了有关 Excel 互操作的文档:HasVBProject但没有我可以使用的示例。

最佳答案

试试这个

f = Dir("*.xls*")
While f <> ""
On Error Resume Next
Set wb = Workbooks.Open(f)
If wb.HasVBProject Then
Debug.Print wb.Name & " has macro"
Else
Debug.Print wb.Name & "does not have macro"
End If
wb.Close
f = Dir
Wend

关于c# - 使用 C# 检查 Excel 工作簿是否具有宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41637912/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com