CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2000
    Posts
    57

    How to disable a tab on a Tab control

    I am using a MicroSoft ActiveX Tab control, with 5 tabs. On a form I have this tab control and few check boxes. Based on the value of the check box I need to disable particular tabs of the Tab control. Could you people please help me on how to do that.

    Thankyou

    Regards

    Ali.


  2. #2
    Join Date
    Feb 2000
    Location
    Ireland
    Posts
    808

    Re: How to disable a tab on a Tab control

    If you are talking about the microsoft tabbed dialog control then use the tabenabled property

    SSTab1.TabEnabled(1) = false
    'etc





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