'Get Current Process and Current ProcessID using GetCurrentProcess and GetCurrentProcessId API
'Get Current Process and Current ProcessID using GetCurrentProcess and GetCurrentProcessId API
API Declarations
Private Declare Function GetCurrentProcessId Lib "kernel32" () As Long
Rate 'Get Current Process and Current ProcessID using GetCurrentProcess and GetCurrentProcessId API
(1(1 Vote))
'http://www.geocities.com/marskarthik
'http://marskarthik.virtualave.net
'Email: [email protected]
Private Sub Form_Load()
MsgBox "Current Process is " & Hex(GetCurrentProcess) & Chr(13) & _
"Current Process ID is " & Hex(GetCurrentProcessId)
End
End Sub
'Get Current Process and Current ProcessID using GetCurrentProcess and GetCurrentProcessId API Comments
No comments yet — be the first to post one!
Post a Comment