How to Use INKEY() to Get an ASCII Code

Last reviewed: June 27, 1995
Article ID: Q114189
The information in this article applies to:
  • Microsoft FoxPro for Windows, versions 2.5, 2.5a, and 2.5b
  • Microsoft FoxPro for MS-DOS, versions 2.5, 2.5a, and 2.5b
  • Microsoft FoxPro for Macintosh, version 2.5b

SUMMARY

The INKEY() function can be used to get the American Standard Code for Information Interchange (ASCII) value of a character typed with the keyboard.

MORE INFORMATION

FoxPro for MS-DOS includes an ASCII chart containing the ASCII codes for all characters. FoxPro for Windows and Macintosh, however, do not include this chart. Using the INKEY() function provides a way to look up a specific ASCII code.

To look up an ASCII code, type the following statement in the Command window:

   x = INKEY(0)

The (0) parameter instructs INKEY() to wait indefinitely for a keystroke. The next key you type is read by the INKEY() function. Its ASCII code is stored to the X variable.

NOTE: If the value of X does not display on the screen, type the following in the Command window:

   ?x


Additional reference words: FoxMac FoxDos FoxWin 2.50 2.50a 2.50b
KBCategory: kbprg
KBSubcategory: FxprgGeneral


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: June 27, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.