I have the initial form called "start", and a button called "run". Now I have created an additional form called "runf". How can I open "runf" from the "run" button. I have tried to look on the internet, and the answer is the following ..
Form Formulario = New Form();
Formulario.Show();
But I do not want to create a form from code, I want to open a form that I already have created. In VB.NET, it was done only with Form.Show (); Can someone explain to me why C # is totally different? Or I'm wrong, well, I have no idea.