shingo99 said:hi
i wish to make 2 form show up together in 1 form
some say us MDi form
but how to get that?and how to set those 2 form to show up?
can help me please?
thank you in advance
Dim x As New Form1
x.MdiParent = MdiForm 'make sure you use a sub Main to make a object from the mdiForm or use me in your mdiForm
x.Show()
AlexCode said:That's the normal MDI behaviour...
What I understood that he wants to do is to put a form inside another normal form, not and MDIParent form...
With my method you can add a form inside any IContainer control... ie like a Panel or something like that...
Alex