The results are in! Meet the top members of our 2017 Expert Awards. Congratulations to all who qualified!
public partial class frmMainForm : Form {
public frmIudexnet() {
InitializeComponent();
//You call your second form here (asuming you already created you form with the IDE)
FormName frm = new FormName();
frm.ShowDialog();
}
frmSecondForm.Show();
this.TopMost = true;
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
Open in new window