asked on
ASKER
Private Sub TabControl1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TabControl1.SelectedIndexChanged
' 3 = tab 4
If Me.TabControl1.SelectedIndex = 3 Then
' Decision if enables or disables the controls
Stop
End If
End Sub
ASKER
ASKER
Visual Basic .NET (VB.NET) is an object-oriented programming language implemented on the .NET framework, but also supported on other platforms such as Mono and Silverlight. Microsoft launched VB.NET as the successor to the Visual Basic language. Though it is similar in syntax to Visual Basic pre-2002, it is not the same technology,
TRUSTED BY
Once you selected that specific tab, you can determinate if the controls are accessible or not, and use a loop on then to enable/disable. It easy that way :)