TabStop
This property determines whether you can get to a control with the keyboard.
Usage |
oObject.TabStop = lCanTabHere lCanTabHere = oObject.TabStop |
TabStop is ignored for controls in a column of a grid. The docs say that it's read-only in that case, but in fact you can change it. Your changes are ignored, however. Seems that controls in a grid, if available, must be tab-able. |
Example |
* Keep user from tabbing into all buttons on a form * Actually this only affects buttons based on the base classes ThisForm.SetAll("TabStop", .F., "CommandButton") ThisForm.SetAll("TabStop", .F., "OptionButton") |
See Also |