How to open up a form from another form in VB.NET?

The Solution to How to open up a form from another form in VB.NET? is


Private Sub Button3_Click(sender As System.Object, e As System.EventArgs) _
                          Handles Button3.Click

    Dim box = New AboutBox1()
    box.Show()

End Sub

~ Answered on 2013-12-16 22:39:03


Most Viewed Questions: