I have 2 forms, for example: FormA & FormB. The code in FormA might look like this:

Code:
	FormB.Show()
        Me.Hide()
When I use this code (VB6-like), it calls up FormB and then the program ends. If I comment out the me.Hide() it works, but FormA is still showing. I only want FormB to be showing.