PRB: Return 0 in TextBox Valid Allows Switching Active FormLast reviewed: January 8, 1997Article ID: Q161864 |
The information in this article applies to:
SYMPTOMSThe Help for Visual FoxPro states the following about the Valid event of a control:
If 0 is returned, the control does not lose focus.This is true if you try to move between controls on a single form. But if a control returns 0 in the Valid event, you will be able to move the focus to a different form.
RESOLUTIONTo prevent the control from losing focus, you should return .F. (False) from the Valid event of the control:
RETURN .F.To disable the "Invalid Input" message that a False (.F.) return value causes, issue the following command:
SET NOTIFY OFFThis should be done at the start of an application or in the Init event of a form.
STATUSMicrosoft is researching this behavior and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce Behavior
|
KBCategory: kbui kbprb
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |