Private Const PROCESS_QUERY_INFORMATION = &H400
Private Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessID As Long) As Long
Private Declare Function TerminateProcess Lib "kernel32" (ByVal hProcess As Long, ByVal uExitCode As Long) As Long
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Private Sub Command1_Click()
Dim lngPid As Long, lngRc As Long
lngPid = OpenProcess(PROCESS_QUERY_INFORMATION, False, Shell("C:\windows\notepad.exe", vbNormalFocus))
Sleep 5000
TerminateProcess lngPid, lngRc
End Sub