Hi Funky,
Below are the things that I have done.
1. Created a Windows C# project.
2. Added windows forms to the project.(Mainform, form1, form2, form3)
3. Added buttons and text boxes to the respective forms.
What I want to do now is to click a button on Mainform to bring up
form1, then click a button on form1 to birng up form2....Each form is
in its own class. The reason why I want to do it this way is because I
have a number of methods associated with each form and it is easier for
me to create the forms by using the toolbox.
I have had success in doing the following:
1. From Mainform, create form1.
2. Hide MainForm, and create form2 from form1....
All these forms are creatd dynamically...what I want to do is to call
forms that have already been designed using VS graphical inteface.
Hope this helps explaining what I want to do and thanks..
Mario
[quoted text, click to view] FUnky wrote:
> I don't think you've explained your problem clearly.
> If you know how to create new forms from main form, you could very well do
> the same from other forms too.