calling a second form using a first form
how to open a second form if validation is true
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Yi Rong TanPosted Jan 15, 2015, 4:39 AM
{
2ndFormName 2ndform = new 2ndFormName();
2ndform.Show;
//or you can also use ShowDialog();
}
Carlos kambuiPosted Jan 15, 2015, 4:47 AM