Option Explicit
Private Const STILL_ACTIVE = &H103
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 GetExitCodeProcess Lib "kernel32" (ByVal hProcess As Long, lpExitCode As Long) As Long
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Private Sub ExecProceso(Byval ExeFileName As String)
On Error GoTo Err_Exec
Dim lPId As Long, lRc As Long
lPId = OpenProcess(PROCESS_QUERY_INFORMATION _
, False, Shell(ExeFileName, vbNormalFocus))
Do
GetExitCodeProcess lPId, lRc
Sleep 100
DoEvents
Loop While lRc = STILL_ACTIVE
MsgBox "Proceso finalizado"
Exit Sub
Err_Exec:
MsgBox "Fallo sometiendo proceso '" & ExeFile & "'." & String(2, vbCrLf) _
& "(" & Err.Number & ") " & Err.Description, vbCritical, "Ejecutar"
End Sub