Showing a hidden form
- by Arcadian
Newb question:
how do i show a from that have been hidden using
this.Hide();
I have tried
MainMenuForm.Show();
and this just says i need an object ref
have tried:
MainMenuForm frmMainMenu = new MainMenuForm();
frmMainMenu.Show();
which seems to show the appropriate form. but when you exit the app, it is still held in memory because it hasn't shown the form that was hidden, instead it has shown a new version of the form. in effect having 2 instances of the form (one hidden, one visible).
whats the correct procedure here
Thanks in advance