tags:

views:

37

answers:

2

I have a panel with many controls on it. Tab order is assigned. I want to remove some control from tab order (round). And then restore it. How ?

runtime

.net 2.0 (please, no linq)

+2  A: 

Set the TabStop property to false.

SLaks
Thanks, SLaks !
nik
You should accept this answer by clicking the hollow check.
SLaks
+1  A: 

Setting the TabStop property of a control to false will prevent it from being included in the tab order. To restore it, just set TabStop to true again.

Adam Robinson