Hi All,

I m working on a TabControl in Vb.Net. Its having 4 tabpages. like Tab1, Tab2, Tab3, Tab4. On Tab1 I m having a checkBox.

My requirement is when checkBox.Checked=True it will enable the Tab2. How can I go for this?

Note: I m not selecting the Tab2


Plz give me few sugestion

Thanks

Recommended Answers

All 10 Replies

You can do it by using 2 methods first
TabControl.SelectedTab = TabPage
or
TabControl.SelectedIndex = theNumberOfTabSelected

So you want to have the second tab disabled until they check this checkbox?

Well, after fiddling around for a little bit (I'm rather new to Visual Basic so maybe this could be done better) I've found out that there is no 'obvious' enabled state of the tab. The intellisense doesn't pick it up and it's not in the properties panel but you can set it through using: TabPageName.Enabled = False set that when the form loads, the user can still click the tab but all the controls within that tab are disabled (I don't know how to disable the tab entirely sorry :/)

Private Sub checkbox_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles checkBox.CheckedChanged
 
    If checkBox.Checked = True Then
         TabPageName.Enabled = True
    ElseIf checkBox.Checked = False Then
        TabPageName.Enabled = False
    End If

End Sub

So make sure you set the Enabled State of the TabPage to False and then use that code, edit it to your hearts delight to enable the page. Maybe someone else knows how to disable the tab altogether :) but here's my suggestion.

(My tabs are messed up in my code, so be aware.)

Although you have mention a way to disable tab controls in vb.net that wasn't working
Don't know the reason
I'm using VB.Net 2005 it doesn't have enabled property for tabpages.
Therefore once you type as follows it will prompt an error message

TabPageName.Enabled=true


Enabled is not a property of TabPage

So if you find another way to disable tab pages please post it

Try it...........It is tested. It's working.

Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
If CheckBox1.Checked = True Then
TabControl1.SelectedTab = TabPage2
End If
End Sub

Thank you.

you are specifying a way to select the tab when some control had been changed.But what i want to do is to disable the tab page when i change a control.

What I got to know is there is no way to disable a tab page in VB.Net

So i have tried inserting a panel in to the tab page and put all controls in to that panel. Thereby making the panel disabled when a control had been changed.

This way i got the thing i want to do.

Thanx for your support

commented: Thread is almost one year old. Don't put your comments. -1

Kimbula, there is no enable or disable property in a single tabpage.

kimbula,
I know this thread is a bit old but I wanted to propose another option. You could have the tab removed (made invisible) when the form loads, then add it back when the user checks the checkbox.

To remove the tab:

TabControl1.Controls.Remove(tab2)

To add:

TabControl1.Controls.Add(tab2)

hi i want to join u;;;;;

im kind of having the same issue in .net 2008

im trying to figure out a way to exit sub whenever the user clicks on a tab strip. not performing any action, forcing them to use a button to switch between the different tabs.

the panel option seems ok, just insert a panel into each tab page, make it invisible then when the use clicks the button switch to the next tab page and show the panel.

little bit rough of a way and there has to be something easier if you ask me.

i want how to go on tab page1 to tabpage 2 please send

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.