Kill Process II

cfonseca

Member
Joined
Jun 15, 2005
Messages
5
Programming Experience
3-5
Kill Process

As to kill a process that has duration of 60 seconds
Thanks.
 
to kill the process after 30 seconds
If MyProcess.TotalProcessorTime.Seconds >= 30 Then
MyProcess.Kill()
End If

is correct ?
 
Back
Top