Process does not close after closing the form
Application.Exit()
tells your App to close itself.
Environment.Exit(0)
tells Windows to kill it.
I prefer the latter since it really closes your app no matter what.
Maybe you are looking for Application.Exit()
?