-
I want to know how to create a form in a form.
Similar to internet explorer or visual basic where there is a toolbar and menu's on the top of the main form and a large 'open' area under that where you can open other forms inside.
I would appreciate any help.
Thanks
Rithm
-
You mean an MDI Form?
Go to Project > Add MDI Form.
Now go to Project > Properties and set the StartUp object to MDIForm1.
Set Form1's MDIChild property to True.
Add this code to the MDIForm.
Code:
Private Sub MDIForm_Load()
Form1.Show
End Sub
-
Thanks..
thats what I was looking for..
Pretty easy...I have just never had to do it before...
Thanks again
Rithm