Kills a process based on it's title...
'// Add to a module
Option Explicit
Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" _
(ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Declare Function GetWindowThreadProcessId Lib "user32" _
(ByVal hwnd As Long, ByRef lpdwProcessId As Long) As Long
Private Declare Function OpenProcess Lib "Kernel32" _
(ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, _
ByVal dwProcessID As Long) As Long
Private Declare Function CloseHandle Lib "Kernel32" _
(ByVal hObject As Long) As Long
Private Declare Function TerminateProcess Lib "Kernel32" _
(ByVal hProcess As Long, ByVal uExitCode As Long) As Long
Private Const SYNCHRONIZE = &H100000
Private Const PROCESS_TERMINATE As Long = &H1
Public Sub KillApp(ByVal WindowTitle As String, Optional ByVal NoMessage As Boolean = False)
' Kills a running application based on the Window title
'// Nededs an EXACT match...
Dim lHwnd As Long
Dim lProc As Long
Dim lProcHnd As Long
On Error GoTo Catch
'WindowTitle = "Untitled - "
' Get the target's window handle.
lHwnd = FindWindow(vbNullString, WindowTitle)
If lHwnd = 0 Then
If NoMessage Then
Exit Sub
Else
Err.Raise 30000, , "Unable to find window handle of application to terminate"
End If
End If
'// Get the process
GetWindowThreadProcessId lHwnd, lProc
If lProc = 0 Then
If NoMessage Then
Exit Sub
Else
Err.Raise 30001, , "Unable to get process ID of window handle"
End If
End If
lProcHnd = OpenProcess(SYNCHRONIZE Or PROCESS_TERMINATE, 0, lProc)
If lProcHnd = 0 Then
If NoMessage Then
Exit Sub
Else
Err.Raise 30002, , "Can't get process handle"
End If
End If
'// Terminate Process
If TerminateProcess(lProcHnd, 0&) = 0 Then
If Not NoMessage Then
Err.Raise 30003, , "Failed to terminate process"
End If
End If
'// Close the process handle
CloseHandle lProcHnd
Exit Sub
Catch:
MsgBox Err.Number & " - " & Err.Description, vbExclamation, "KillApp"
End Sub
Title needs to be an Exact match - there are alternatives to search for a Window based on a partial title, but just took the easiest option (I had the code already).
This kills a process, not just close the application - there will be no option to Save or any other dialogs that may be displayed by the application, before it is terminated.
Bookmarks