Window within window

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dagoberto Aceves

    #1

    Window within window

    Could someone please help? Im trying to figure out how to have multiple
    forms opened within one form, but the book im using really doesn't help
    much.

    I was thinking of using the panels, but im confused as to how to make it
    work.

    Also, if someone could point out a good reference book, that'd be
    awesome.


    thanks for any feedback,
    D



    *** Sent via Developersdex http://www.developersdex.com ***
  • steve

    #2
    Re: Window within window

    use the help menu and search for "mdi" forms.

    an mdi parent is the master window and mdi children are the windows that the
    parent will contain. these are properties you can set in the properties
    window of a form.

    i started learning using:

    "programmin g microsoft visual basic .net"

    it's about 3" thick but divided up into logical sections with in-depth
    explanations and examples that are fairly straight-forward and easy to
    understand.

    hth,

    me


    "Dagoberto Aceves" <daceves@devdex .com> wrote in message
    news:ugphetfvFH A.596@TK2MSFTNG P12.phx.gbl...
    | Could someone please help? Im trying to figure out how to have multiple
    | forms opened within one form, but the book im using really doesn't help
    | much.
    |
    | I was thinking of using the panels, but im confused as to how to make it
    | work.
    |
    | Also, if someone could point out a good reference book, that'd be
    | awesome.
    |
    |
    | thanks for any feedback,
    | D
    |
    |
    |
    | *** Sent via Developersdex http://www.developersdex.com ***


    Comment

    • Herfried K. Wagner [MVP]

      #3
      Re: Window within window

      "Dagoberto Aceves" <daceves@devdex .com> schrieb:[color=blue]
      > Im trying to figure out how to have multiple
      > forms opened within one form, but the book im using really doesn't help
      > much.[/color]

      Set the main window's 'IsMdiContainer ' property to 'True'. Then use the
      code below to show your forms:

      \\\
      Dim f As New FooForm()
      f.MdiParent = Me
      f.Show()
      ///

      --
      M S Herfried K. Wagner
      M V P <URL:http://dotnet.mvps.org/>
      V B <URL:http://classicvb.org/petition/>

      Comment

      • Dagoberto Aceves

        #4
        Re: Window within window

        Yeah, the book im using is not the greatest.

        Thanks for everything.

        *** Sent via Developersdex http://www.developersdex.com ***

        Comment

        Working...