Results 1 to 2 of 2

Thread: VB2005 TabControl

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2007
    Posts
    37

    VB2005 TabControl

    Hi,

    In VB2005 express tabcontrol, there are options: Normal, buttons and flatbuttons of the appearance. How can I remove buttons at the top of the tabcontrol, I just want to leave the rectanage graph over there.
    In MS Access, the tabcontrol's style can setup None. Can VB2005 express tabcontrol setup no button/tab?

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: VB2005 TabControl

    It's not actually the "VB 2005 Express TabControl". It's the System.Windows.Forms.TabControl, which is the same no matter what version of VB you use or even what .NET language you use (VB, C#, C++, J#, Delphi, etc.).

    No, the TabControl doesn't support that because there is no need for it. Just add multiple Panels and either hide and show them as needed or change their z-order so only one is showing at a time. You can create your own UserControl and place the Panels on it, then treat the whole thing as one unit if you want.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

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