tab control inside another tab control

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Georges Heinesch

    tab control inside another tab control

    Hi.

    Is it possible to put a tab control inside another tab control. I tried
    it several times, but for some reason this doesn't seem to work.

    Can someone confirm this, or tell me what the trick is.

    Thanks.

    --
    Georges

  • MacDermott

    #2
    Re: tab control inside another tab control

    The only way I know to do this is to put a subform on the first tab control.
    Then you can put your second tab control on the subform.
    If you do this repeatedly, however, you will find the form loading rather
    slowly.

    HTH
    - Turtle

    "Georges Heinesch" <news@geohei.lu > wrote in message
    news:3fe82fb8$1 _2@news.vo.lu.. .[color=blue]
    > Hi.
    >
    > Is it possible to put a tab control inside another tab control. I tried
    > it several times, but for some reason this doesn't seem to work.
    >
    > Can someone confirm this, or tell me what the trick is.
    >
    > Thanks.
    >
    > --
    > Georges
    >[/color]


    Comment

    • Pete

      #3
      Re: tab control inside another tab control

      > > Is it possible to put a tab control inside another tab control. I tried[color=blue][color=green]
      > > it several times, but for some reason this doesn't seem to work.[/color][/color]

      I don't recommend using nested tab controls for usability reasons. If
      you need to put a lot of information on one form, just use a whole lot
      of tab pages. If all the information doesn't fit inside tabs on a tab
      control on a 800x600-fitting form, then you need to figure out how to
      split the form up into many forms.

      For mega-sized forms, if you absolutely must, you can do what a lot of
      software vendors do for their "Options" dialog boxes--you can put a
      listbox with all the "tab headers" on the left. This can work
      cleanly. When a user clicks on one of the "tab headers", you reveal
      their tab somewhere to the right on the form. The implementation of
      this can allow either using a subform control, or can be done via a
      huge tab control. The advantage of using the tab control is that
      everything is loaded at once; the disadvantage is also that everything
      is loaded at once.

      But it's all up to you.


      Pete

      Comment

      • Georges Heinesch

        #4
        Re: tab control inside another tab control

        Pete wrote:
        [color=blue]
        > [...]
        > For mega-sized forms, if you absolutely must, you can do what a lot of
        > software vendors do for their "Options" dialog boxes--you can put a
        > listbox with all the "tab headers" on the left. This can work
        > cleanly. When a user clicks on one of the "tab headers", you reveal
        > their tab somewhere to the right on the form. The implementation of
        > this can allow either using a subform control, or can be done via a
        > huge tab control. The advantage of using the tab control is that
        > everything is loaded at once; the disadvantage is also that everything
        > is loaded at once.[/color]

        Thanks for the hint. Gonna try that one.
        Thanks!

        --
        Georges

        Comment

        • Georges Heinesch

          #5
          Re: tab control inside another tab control

          MacDermott wrote:
          [color=blue]
          > The only way I know to do this is to put a subform on the first tab control.
          > Then you can put your second tab control on the subform.
          > If you do this repeatedly, however, you will find the form loading rather
          > slowly.[/color]

          Thanks!

          --
          Georges

          Comment

          • Tom Wickerath

            #6
            Re: tab control inside another tab control

            If you use subforms on the pages of a tab control, you can avoid the disadvantage by late
            binding the subforms.

            Tips and techniques from FMS for building better applications in Microsoft Access, Visual Basic 6, VB6, VBA, Outlook, SQL Server, Visual Studio .NET, Internet, Office, Excel, and Windows


            Tom
            _______________ _______________ __________

            "Pete" <pshappyman@zom bieworld.com> wrote in message
            news:988f1cfc.0 312231252.5e195 55f@posting.goo gle.com...

            <snip>

            The advantage of using the tab control is that everything is loaded at once; the
            disadvantage is also that everything
            is loaded at once.


            Comment

            Working...