home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / keyboard.swg / 0061_Keyboard Characters.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1994-01-27  |  1.8 KB  |  43 lines

  1. {
  2. > Can you help me with an explaination as the the function of the
  3. > various control codes.  Please help me fill in this list:
  4.  
  5.  ASCII TABLE...
  6.  
  7.  Dec  Hex   Binary    Ctrl Name of character
  8.  ---  ---  ---------   --  --------------------------------------
  9.    0  00h  0000 0000   ^@  NUL  null
  10.    1  01h  0000 0001   ^A  SOH  start of header
  11.    2  02h  0000 0010   ^B  STX  start of text
  12.    3  03h  0000 0011   ^C  ETX  end of text
  13.    4  04h  0000 0100   ^D  EOT  end of transmission
  14.    5  05h  0000 0101   ^E  ENQ  inquiry
  15.    6  06h  0000 0110   ^F  ACK  acknowledgement
  16.    7  07h  0000 0111   ^G  BEL  bell
  17.    8  08h  0000 1000   ^H  BS   backspace
  18.    9  09h  0000 1001   ^I  HT   horizontal tab    (Can't display)
  19.   10  0Ah  0000 1010   ^J  LF   line feed         (Can't display)
  20.   11  0Bh  0000 1011   ^K  VT   vertical tab
  21.   12  0Ch  0000 1100   ^L  FF   form feed
  22.   13  0Dh  0000 1101   ^M  CR   carriage return   (Can't display)
  23.   14  0Eh  0000 1110   ^N  SO   shift out
  24.   15  0Fh  0000 1111   ^O  SI   shift in
  25.   16  10h  0001 0000   ^P  DLE  data link escape
  26.   17  11h  0001 0001   ^Q  DC1  device control 1  (XON)
  27.   18  12h  0001 0010   ^R  DC2  device control 2
  28.   19  13h  0001 0011   ^S  DC3  device control 3  (XOFF)
  29.   20  14h  0001 0100   ^T  DC4  device control 4
  30.   21  15h  0001 0101   ^U  NAK  negative acknowledgement
  31.   22  16h  0001 0110   ^V  SYN  synchronous idle
  32.   23  17h  0001 0111   ^W  ETB  end of transmission block
  33.   24  18h  0001 1000   ^X  CAN  cancel
  34.   25  19h  0001 1001   ^Y  EM   end of medium
  35.   26  1Ah  0001 1010   ^Z  SUB  substitute
  36.   27  1Bh  0001 1011   ^[  ESC  escape
  37.   28  1Ch  0001 1100   ^\  FS   file separator
  38.   29  1Dh  0001 1101   ^]  GS   group separator
  39.   30  1Eh  0001 1110   ^^  RS   record separator
  40.   31  1Fh  0001 1111   ^_  US   unit separator
  41.   32  20h  0010 0000       SP   space
  42.  
  43.