FECHAR UM PROGRAMA NO AMBIENTE WINDOWS

USUARIO.EXCLUIDOS 11/12/2003 15:27:51
#719
Como faço para fechar um programa em ambiente windows usando o
Shell32, ou qualquer outra forma?

CASPEREARK 14/12/2003 03:25:31
#947
Resposta escolhida
Ô ISMAEL,

Eu tenho um recurso que é melhor ainda, se aplicar os codigos abaixo, seu programa será capaz de detectar quando o aplicativo em questão foi encerrado:

1) Adicione no módulo de seu projeto (ou crie um novo se preferir)

Public Type STARTUPINFO
cb As Long
lpReserved As String
lpDesktop As String
lpTitle As String
dwX As Long
dwY As Long
dwXSize As Long
dwYSize As Long
dwXCountChars As Long
dwYCountChars As Long
dwFillAttribute As Long
dwFlags As Long
wShowWindow As Integer
cbReserved2 As Integer
lpReserved2 As Long
hStdInput As Long
hStdOutput As Long
hStdError As Long
End Type

Public Type PROCESS_INFORMATION
hProcess As Long
hThread As Long
dwProcessID As Long
dwThreadID As Long
End Type

Public Declare Function WaitForSingleObject Lib _
"kernel32" (ByVal hHandle As Long, ByVal dwMilliseconds _
As Long) As Long

Declare Function CreateProcessA Lib "kernel32" _
(ByVal lpApplicationName As Long, ByVal lpCommandLine As _
String, ByVal lpProcessAttributes As Long, ByVal _
lpThreadAttributes As Long, ByVal bInheritHandles As Long, _
ByVal dwCreationFlags As Long, ByVal lpEnvironment As Long, _
ByVal lpCurrentDirectory As Long, lpStartupInfo As _
STARTUPINFO, lpProcessInformation As PROCESS_INFORMATION) _
As Long

Declare Function CloseHandle Lib "kernel32" (ByVal hObject _
As Long) As Long

Public Const NORMAL_PRIORITY_CLASS = &H20&
Public Const INFINITE = -1&


2-) Insria no formulário padrão o código:

Public Sub ExecCmd(cmdline$)
Dim proc As PROCESS_INFORMATION
Dim start As STARTUPINFO

'Inicia a strutura STARTUPINFO
start.cb = Len(start)

'Inicia a aplicação escolhida para ser executada
ret& = CreateProcessA(0&, cmdline$, 0&, 0&, 1&, _
NORMAL_PRIORITY_CLASS, 0&, 0&, start, proc)

'Aguarda a aplicação iniciada terminar
ret& = WaitForSingleObject(proc.hProcess, INFINITE)
ret& = CloseHandle(proc.hProcess)
End Sub


3-)Adcione um botão (command1) e no evento click do botão adicione:

Private Sub Command1_Click()


MsgBox "Vou iniciar o Notepad"

Call ExecCmd("c:\windows
otepad.exe")

MsgBox "O Notepad foi encerrado"

End Sub


Este recurso é util, pois várias vezes tentei usar outros códigos para fechar o aplicativo e muitas vezes os mesmo trava. Se a sua aplicação encerra automáticamente é feito.

Espero que tenha de ajudado

Boa sorte!
Tópico encerrado , respostas não são mais permitidas