multiple form indows application in C#
-
hi all , I want to make a mulitple form application using C#. It is something like An event on 1 form should initialize the other form and or it should invoke the other form. I do not want an MDI applicaion. Can any1 help me out with that? Thanks in advance Sankalp Verma
-
hi all , I want to make a mulitple form application using C#. It is something like An event on 1 form should initialize the other form and or it should invoke the other form. I do not want an MDI applicaion. Can any1 help me out with that? Thanks in advance Sankalp Verma
-
hi all , I want to make a mulitple form application using C#. It is something like An event on 1 form should initialize the other form and or it should invoke the other form. I do not want an MDI applicaion. Can any1 help me out with that? Thanks in advance Sankalp Verma
This is all you need to get another forum up
MyOtherForm otherForm = new MyOtherForm();
otherForm.Show();What you do for initialisation is up to you.
Upcoming events: * Glasgow: SQL Server 2005 - XML and XML Query Plans, Mock Objects, SQL Server Reporting Services... * Reading: Developer Day 5 Never write for other people. Write for yourself, because you have a passion for it. -- Marc Clifton My website
-
This is all you need to get another forum up
MyOtherForm otherForm = new MyOtherForm();
otherForm.Show();What you do for initialisation is up to you.
Upcoming events: * Glasgow: SQL Server 2005 - XML and XML Query Plans, Mock Objects, SQL Server Reporting Services... * Reading: Developer Day 5 Never write for other people. Write for yourself, because you have a passion for it. -- Marc Clifton My website