OleAutoObj 未在我的 PC 中打开 Excel 应用程序

OleAutoObj is not opening Excel application in my PC

以下 dxl 代码无法在我的 PC 中打开 excel 应用程序。我怀疑我 运行 的早期 dxl 脚本。它激活了 Excel 个 Ole 对象并打开了它们。如何关闭所有由早期 dxl 脚本打开的 excel 进程? 任何帮助将不胜感激。

OleAutoObj objExcel = oleCreateAutoObject("Excel.Application")
if (objExcel != null){
bool excelVisible
oleGet(objExcel, "Visible", excelVisible)
if (excelVisible == false){
olePut(objExcel, "Visible", true)
}
}

-Ashok Anumula

有烫发oleCloseAutoObject( objExcel )