Terminate a Non-VB Application
Hey, guys ... Is there a way to terminate another application from VB.Net? The other application was launched by my VB Application, but ... If I keep launching it ... there will be multiple of them. I just need to make sure to kill it before a new one is launched.
Thanks.
Re: Terminate a Non-VB Application
Code:
Dim p As Process = Process.Start("notepad")
'do some work
p.Kill()
Re: Terminate a Non-VB Application
Re: Terminate a Non-VB Application
Please mark your thread as resolved.