Assuming Form1 and Form2 respectively where Form1 is the form you want to
start the next one from....
SomeEvent
Form2 f = new Form2();
f.Show();
//or f.ShowDialog(); if you wanted it shown modally
EndSomeEvent
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.