CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Thread: simple...

  1. #1
    Guest

    simple...

    Hi,

    Im a total beginner to VB.. I want to create an application thats just incorporates a few property sheets controlled by a tab control. How can I do that the easiest way ??
    Thanks.


  2. #2
    Guest

    Re: simple...

    Formulate your task more clear.
    Vlad


  3. #3
    Join Date
    May 1999
    Location
    Omika, Japan
    Posts
    729

    Re: simple... Use Tab control

    The best fit for your case would be to use Microsoft Tabbed Dialog ControlTabCtl32.ocx. This control's design time look and feel will be like that in run time.
    so you create a tab control on a form (select & draw it to approp size). Define the no. of tabs, in the propertied window. You will immediately see that many tabs appearing in the design window.
    Then you select each tab, and pick and place the other set of controls you want to add for that "property sheet" like labels texk boxes, and btns etc
    Their design time appearence is more intuitive.

    If you use the tabstrip control that comes with the Windows Common Controls set ComCtl32.ocx, you have to place your controls that constitute a "page" on a seperate container typically a "Frame" control, and write the logic for displaying yourself on the _click event


    RK

  4. #4
    Join Date
    Sep 2000
    Posts
    200

    Re: simple... Use Tab control

    The best fit for your case would be to use Microsoft Tabbed Dialog Control TabCtl32.ocx

    ??? Where can I find this Microsoft Tabbed Dialog Control? Thanks.


  5. #5
    Join Date
    Apr 2000
    Location
    South Carolina,USA
    Posts
    2,210

    Re: simple... Use Tab control

    Go to Project/Components and Select "Microsoft Tabbed Dialog Control ..."

    John G

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

Featured