I create a new instance of FrmLogin

Code:
        Dim LoginForm As FrmLogin
        LoginForm = New FrmLogin()
        LoginForm.Show()
If I unload (close/set to nothing) the current form I'm on, then frmLogin is lost. Something I don't want to happen.

How do you guys load a form, while closing the one you were on?

Thanks!