Results 1 to 3 of 3

Thread: Forms

  1. #1
    Guest
    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

  2. #2
    Guest
    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

  3. #3
    Guest

    Smile

    Thanks..

    thats what I was looking for..

    Pretty easy...I have just never had to do it before...

    Thanks again

    Rithm

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width