Ok, i am currently working on a game, but when i close my game. Both the Forms close and i can continue editing the code. But when i run .exe file of my game and i close the program from there it stays in my process list. So what kind of close command should i use so that it will be removed from my process list.

the closing commands i used are these:
When you go from Form1 to Form2 this one: Form1.Hide()
When you close Form2: Form1.Close(), Me.Close()

so what do i do wrong?