Knowledge Base

KeyPress Event in Check Box Allows Y or N

Article ID: 130081

Article Last Modified on 2/10/2000


APPLIES TO


This article was previously published under Q130081

SUMMARY

A check box object can accept a key press of Y or N to toggle the state of that object in the KeyPress event.

MORE INFORMATION

Place 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 query words: VFoxWin 3.00

Keywords: kbcode KB130081