Re: System Tray Application
ise the terminate process api...
Private Declare Function TerminateProcess Lib "kernel32" (ByVal hProcess As Long, ByVal uExitCode As Long) As Long
Private Declare Function GetCurrentProcess Lib "kernel32" () As Long
TerminateProcess GetCurrentProcess, 0
Re: System Tray Application
Thank you for your quick response.
How do I use
Private Declare Function TerminateProcess Lib "kernel32" (ByVal hProcess As Long, ByVal uExitCode As Long) As Long
Private Declare Function GetCurrentProcess Lib "kernel32" () As Long
Can you please explain how can I use above API's
Thank you again