BUG: SelText in Edit Box Limited to 255 CharactersLast reviewed: July 30, 1997Article ID: Q172088 |
The information in this article applies to:
SYMPTOMSIn Visual FoxPro 3.x and 5.x for Windows and Visual FoxPro 3.0b for the Macintosh, the SelText property for an Editbox selects only up to 255 characters.
RESOLUTIONThe workaround is to use the SUBSTR function as illustrate below:
SelectedText = SUBSTR(ThisForm.edit1.Value, ; ThisForm.edit1.SelStart + 1, ; ThisForm.edit1.SelLength) STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce Behavior
Keywords : FxprgClassoop kbcode Version : MACINTOSH:3.0b; WINDOWS:3.0,3.0b,5.0,5.0a Platform : MACINTOSH WINDOWS Issue type : kbbug |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |