W William Ryan Nov 5, 2003 #2 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
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