Parsi Coders
'Check If Process Is Running - نسخه قابل چاپ

+- Parsi Coders (http://parsicoders.com)
+-- انجمن: Software Development Programming (http://parsicoders.com/forumdisplay.php?fid=37)
+--- انجمن: Visual Basic Programming (http://parsicoders.com/forumdisplay.php?fid=39)
+---- انجمن: Visual Basic 6 (http://parsicoders.com/forumdisplay.php?fid=44)
+---- موضوع: 'Check If Process Is Running (/showthread.php?tid=250)



'Check If Process Is Running - Amin_Mansouri - 05-10-2011

'Check If Process Is Running
'Coded by stoopid/goodhigh
کد پی‌اچ‌پی:
Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
Private Declare Function Process32First Lib "kernel32" (ByVal hSnapShot As LonguProcess As PROCESSENTRY32) As Long
Private Declare Function Process32Next Lib "kernel32" (ByVal hSnapShot As LonguProcess As PROCESSENTRY32) As Long
Private Declare Function CreateToolhelp32Snapshot Lib "kernel32" (ByVal dwFlags As Longth32ProcessID As Long) As Long
Private Const TH32CS_SNAPPROCESS As Long 2

Public Type PROCESSENTRY32
dwSize 
As Long
cntUseage 
As Long
th32ProcessID 
As Long
th32DefaultHeapID 
As Long
th32ModuleID 
As Long
cntThreads 
As Long
th32ParentProcessID 
As Long
pcPriClassBase 
As Long
swFlags 
As Long
szExeFile 
As String 1024
End Type

Public Function IsProcessRunning(Filename As String) As Boolean
Dim hSnapShot 
As Long
Dim pe32 
As PROCESSENTRY32
hSnapShot 
CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS0'create snapshot of process
pe32.dwSize = Len(pe32) '
get size of processentry32
Process32First hSnapShot
pe32 'get info about first process
Do While Process32Next(hSnapShot, pe32) <> 0 '
loop through all processes
If InStr(1LCase(pe32.szExeFile), LCase(Filename)) > 0 Then 'process found
IsProcessRunning = True
End If
Loop
CloseHandle (hSnapShot) '
close snapshot
End 
Function

Sub Main()
If 
IsProcessRunning("explorer.exe") = True Then
MsgBox 
"Process running!"
Else
MsgBox "Process not running!"
End If
End Sub 



RE: 'Check If Process Is Running - Amin_Mansouri - 05-10-2011

در تابع بالا میتونید پروسه مورد نظر رو چک کنید
فقط کافیه تابع IsProcessRunning رو فراخوانی مقدار برگرشتی از نوع Boolean هست.