KeyPress Event in Check Box Allows Y or NLast reviewed: April 30, 1996Article ID: Q130081 |
The information in this article applies to:
SUMMARYA check box object can accept a key press of Y or N to toggle the state of that object in the KeyPress event.
MORE INFORMATIONPlace the following code in the KeyPress event of the check box, so that a user could press the Y or N key when the check box has the focus:
LPARAMETERS nKeyCode, nShiftAltCtrl DO CASE CASE nKeyCode = 121 OR nKeyCode = 89 && y or Y This.Value = .T. CASE nKeyCode = 110 OR nKeyCode = 78 && n OR N This.Value = .F. ENDCASE |
Additional reference words: 3.00 VFoxWin
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |