Windows Form Navigation Problem...
Hi!!!
I'm using C# to do my application. For example I have 2 Forms, created with buttons. When I run the application, and click the next button, it was supposed to lead me to the other form. I managed to achieve that by basically hiding the first form and showing the next.
Example:
Mainpage mp = new Mainpage();
this.hide();
mp.show();
However, when I click the next button I see the forms changing from my taskbar. I tried changing the for resolution of the form to 1024, 768 to have it become a full screen but still when it loads the other form, I am still able to see my desktop wallpaper. How do I link the forms in such a way it doesn't show me my wallpaper.

