views:

250

answers:

2

Can I somehow disable access by TAB on come controls on form in WinForms (controls like textboxes must be enabled for access and writing but when user hits TAB it will access only buttons)

+3  A: 

Set the TabStop property of the control to false.

Robert Harvey
A: 

Find the Tab Stop property on the the Other tab of the property sheet and set it to No for each TextBox you want to prevent the users from tabbing to.

CodeSlave