How to Call Out another Form?
If i have created two form, the first form is the main form and another is just a secondary form. After i click on the login button, then another form will be shown up. Can anybody help me how is the coding look like?
is the coding look like the below:
Form childfrm = new Form2();
childfrm.MdiParent = this;
childfrm.Show();
|