try the destroy() method.
server_crash
Postaholic
2,111 posts since Jun 2004
Reputation Points: 113
Solved Threads: 20
I've looked up the class api and can only find one other possible method that will help: exitValue()
It returns the exit value for the subprocess, but I don't know what you could do with that.
Now, one other way to kill the process is to call the kill.exe file on your computer(if you have windows).
Runtime.getRuntime().exec("kill fileID"), where fileIDis the Process Id. You'll probably have trouble finding the process ID, so I don't know about that either.
Overall, I think this is a problem with your VB code not handling the exit right, or else you're just out of luck.
server_crash
Postaholic
2,111 posts since Jun 2004
Reputation Points: 113
Solved Threads: 20