gpt4 book ai didi

excel - 仅关闭 UFT 打开的 Excel 进程

转载 作者:行者123 更新时间:2023-12-04 20:58:42 25 4
gpt4 key购买 nike

我有一个 UFT 脚本,它在执行时会打开很多 Excel 工作簿。 (我可以在任务管理器中看到它)。如何仅关闭 UFT 单独打开的 Excel 文件(临时工作簿)而不关闭我打开的工作簿?

如果这可以使用 VBScript 完成,那将更有帮助。

最佳答案

Function close_workbook_by_name(workbookname)
Set xl = CreateObject("Excel.Sheet")
For Each x In xl.Application.Workbooks
If x.Name = workbookname Then
x.Close
End If
Next
Set xl = Nothing
End Function

关于excel - 仅关闭 UFT 打开的 Excel 进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41422939/

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