Frist go to Project Properties or w/e then set when form closes to another option (i'm at school so idk) however there's 2 options just change it.
then use "Close" instead of "Hide". there's code:
[html]
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Form2.show 'will show form2
me.close ' it will close the form you're coding at
End Sub
[/html]
[html] Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Form3.show ' it will show you form3
me.close ' it will close the form you're coding at
End Sub[/html]