• ¡Welcome to Square Theme!
  • This news are in header template.
  • Please ignore this message.
مهمان عزیز خوش‌آمدید. ورود عضــویت


امتیاز موضوع:
  • 8 رای - 3.5 میانگین
  • 1
  • 2
  • 3
  • 4
  • 5
Title: 'Check If Process Is Running
حالت موضوعی
#1
'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 
گروه دور همی پارسی کدرز
https://t.me/joinchat/GxVRww3ykLynHFsdCvb7eg
 
پاسخ
#2
در تابع بالا میتونید پروسه مورد نظر رو چک کنید
فقط کافیه تابع IsProcessRunning رو فراخوانی مقدار برگرشتی از نوع Boolean هست.
گروه دور همی پارسی کدرز
https://t.me/joinchat/GxVRww3ykLynHFsdCvb7eg
 
پاسخ
  


پرش به انجمن:


Browsing: 1 مهمان