Disable TAB access to control in WinForms

controls, winforms

Solution

Set the TabStop property of the control to false.

Problem

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)

Original source