QTP中如何判斷Excel程式是否存在?
如何判斷Excel程式是否存在?如果存在則關閉Excel程式。
SystemUtil.CloseProcessByName "excel.exe"
On error resume next
Dim Obj
Set Obj = GetObject(,"Excel.Application")
If Not Obj Is Nothing Then
Obj.Quit
Set Obj = Nothing
End If
或者:
' To kill excel application
CreateObject("WScript.Shell").Run "taskkill /f /im excel.exe"
'To check if excel is running use this function
msgbox "Excel is Running:" & FindProcess("EXCEL.EXE")
Function FindProcess(ByVal ProcessName)
FindProcess= False
Set Shell = CreateObject("WScript.Shell")
Set ShellResult = Shell.Exec("TaskList")
While Not ShellResult.StdOut.AtEndOfStream
If Instr(UCASE(ShellResult.StdOut.ReadLine),UCASE(ProcessName)) Then
FindProcess = True
Exit Function
End If
Wend
End Function
相關文章
- postgresql如何判斷表是否存在SQL
- jQuery如何判斷元素是否存在jQuery
- 如何判斷Javascript物件是否存在JavaScript物件
- js如何判斷頁面中是否存在某個元素JS
- jQuery如何判斷一個元素是否存在jQuery
- 如何判斷一個jquery物件是否存在jQuery物件
- 如何利用jQuery判斷指定元素是否存在jQuery
- js如何判斷一個物件是否存在JS物件
- JavaScript中判斷是否存在某屬性JavaScript
- 41:判斷元素是否存在
- mysql如何判斷是否存在某個欄位MySql
- 如何判斷頁面是否存在某個元素
- js如何判斷指定的檔案是否存在JS
- js如何判斷一個函式是否存在JS函式
- jQuery如何判斷某一個元素是否存在jQuery
- jquery判斷元素是否存在於陣列中jQuery陣列
- JavaScript 判斷函式是否存在JavaScript函式
- golang判斷檔案是否存在Golang
- vc判斷檔案是否存在
- iOS判斷是否存在網路iOS
- MySQL判斷表名是否存在MySql
- javascript如何判斷一個頁面元素是否存在JavaScript
- sqlserver中判斷表或臨時表是否存在SQLServer
- 判斷檔案中是否存在中文字元字元
- shell判斷系統路徑中是否存在空格
- 判斷objectStore物件倉庫是否存在Object物件
- js判斷dom節點是否存在JS
- 怎麼判斷mysql表是否存在MySql
- jQuery 判斷使用者是否存在jQuery
- Laravel 5 判斷條件是否存在Laravel
- python 判斷檔案是否存在Python
- jQuery 判斷頁面元素是否存在jQuery
- js如何判斷陣列中是否存在指定的值並返回索引JS陣列索引
- js如何判斷指定名稱的函式是否存在JS函式
- 如何判斷一個js物件是否存在迴圈引用JS物件
- Sql Server中判斷表或者資料庫是否存在SQLServer資料庫
- java判斷mysql中資料庫是否存在JavaMySql資料庫
- javascript判斷一個變數是否存在JavaScript變數