[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
 GETKXTAB()
 Retrieves the entire key code table
------------------------------------------------------------------------------
 Syntax
     GETKXTAB() --> cTable
 Returns
     GETKXTAB() returns a character string that contains all of the
     previously defined key translations.
 Description
     A CA-Clipper Tools key table can be as large as the maximum allocatable
     string.  The number of translations corresponds to:
     ((MEMORY(1) * 1024)/4),
     where the required memory is allocated dynamically.  The key code
     translations can be done through SETKXLAT() or SETKXTAB().
     GETKXTAB(), in contrast to GETKXLAT(), always returns a table of all
     defined key code translations as a string.  A translation table can then
     be saved in a variable and reset using SETKXTAB().
 Example
     Save the entire key table and reinstall it later:
     cKXTab  := GETKXTAB()
        DO KEYCHANGE
     SETKXTAB(cKXTab)
See Also:
SETKXTAB()
SETKXLAT()
GETKXLAT()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson