How can I have a Form be the window of another Form?
(Form within a Form)
Thanks
Printable View
How can I have a Form be the window of another Form?
(Form within a Form)
Thanks
Use an MDI and a normal form.
Thanks very much LAURENS.
a window within a form that shows another form?
Well, an MDI form is a better solution... :)
But if you wanna get dirty, you can make another form (say form2) appear inside a picturebox. It resizes, maximize and minimize, and move around. The only downside here is you have to provide your own scrollbars in case the form is not visible anymore inside the picturebox....
If yah wanna get dirty, try looking up for the Win32 API, SetParent.
Its easy, and... find it out. :)
Jonn