PRB: Unexpected SelStart Property Behavior in Grid's TextboxLast reviewed: July 28, 1995Article ID: Q132366 |
The information in this article applies to:
SYMPTOMSWhen you press the TAB key to move into a grid's text box, the insertion point is placed at the beginning of the field instead of at the end of the field even though the Grid1.Column1.SelectOnEntry property is set to false (.F.), and the Grid1.Column1.Text1.GotFocus event contains this code:
THIS.SelStart = LEN(ALLTRIM(THIS.Value)) CAUSEThe insertion point is always placed at the beginning of the text in row one, column one (R1C1) of the grid when you move to the grid from another object. This is by design. The text box in the grid column handles resetting the selection or select-on-entry in its default GotFocus method. The grid column tells the text box about its SelectOnEntry property.
WORKAROUNDAdd the code shown in the "Example Workaround" section of this article.
STATUSThis behavior is by design.
MORE INFORMATION
Steps to Reproduce Behavior
Example WorkaroundTo place the insertion point at the end of the text, do the following:
|
Additional reference words: 3.00 VFoxWin selection
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |