I'm trying to cleanup unused items but so far no luck...it's quite annoying some forms not to be closed when the back button is pressed. The test application acts just like a browser.

used code
Code:
    Private Sub PanoramaPage1_BackKeyPress(sender As Object, e As System.ComponentModel.CancelEventArgs) Handles MyBase.BackKeyPress
        MyBase.Finalize()
    End Sub
for some forms i just need them to be closed/disposed and not be kept in the navigation history.

Any ideas?