tags:

views:

102

answers:

1

Using VB.NET in Visual Studio 2005, how do you disable or make read only a particular tabpage?

+2  A: 

the only way I can see, for now, is using the TabControl.Selecting control event and manage everything by code

just turn e.Cancel to true to block access to a specific tabpage

Fredou