Ok so I have what is a simple problem in my eyes, but I cannot seem to make it work in any way. I have two forms and get from the first to the second real easy, using a basic show and hide code snippet as follows
GamescreenFrm secondForm = new GamescreenFrm();
private void TwoplayerBtn_Click(object sender, EventArgs e)
{
this.Hide();
secondForm.Show();
However, using a button to get back to the first form only returns errors no matter how hrd I try to make it work. i have used the same type of code to no avail, along with many other suggested solutions on tutorials and forums all over the internet. Can anyone show me how to get this infernal program to work?
Thanks in advance :)