There are a few different ways. First, we need to know the class names of
each file. I will assume that your classes are called FrmMenu, FrmReherse,
and so on.
The easiest way to display another form is to use its Show() or ShowDialog()
method from the My.Forms collection.
My.Forms.FrmReherse.ShowDialog()
Or you can use the shortcut for this statement:
FrmReherse.ShowDialog()
ShowDialog() opens the form "modally," which makes it the sole focus of your
application (in general). Using Show() instead opens the form, but allows
the user to switch to other open forms at any time.
A second method is to create a specific instance of the second form, and
open that.
Dim otherForm As FrmReherse
....
otherForm = New FrmReherse
otherForm.ShowDialog()