I would like to know how to call a form from a MenuStrip without closing the form where the Menu is The codes that I used are from Visual Studio 2008 and they do not work for Visual Studio 2015
I would like to know how to call a form from a MenuStrip without closing the form where the Menu is The codes that I used are from Visual Studio 2008 and they do not work for Visual Studio 2015
Put the property isMdiContainer = true of the main form
I usually do it like this:
Dim f as New Nombredelformulario
f.ShowDialog()
Then at the end to free resources I put under the ShowDialog
f.Dispose()