link two forms

  • Thread starter Thread starter murt
  • Start date Start date
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
 
Back
Top