this is probably a very simple thing to do, but i can't figure this out. i have a form that loads another form when you click a button, using this code:

VB Code:
  1. Dim frm As New Form2
  2. frm.Show
  3. 'Me.Dispose(True)

but if i uncomment the commented code to unload the current form, it unloads the whole project.