Ascii Values

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ankitp
    New Member
    • Jun 2007
    • 1

    Ascii Values

    i need to know the ASCII values for the four arrow keys,
    enter key ,tab key and space bar key....... for a project .
    anyone who knows it please tell me.............
  • BHARATH RS
    New Member
    • May 2007
    • 6

    #2
    Originally posted by ankitp
    i need to know the ASCII values for the four arrow keys,
    enter key ,tab key and space bar key....... for a project .
    anyone who knows it please tell me.............

    F1-F12 key 1 - 12
    Shift F1-F12 key 13 - 24
    Ctrl F1-F12 key 25 - 36
    Ctrl+shift F1-F12 key 37 - 48

    Home key 49
    Up arrow key 50
    Page Up key 51
    (keypad) - key 52
    Left arrow key 53
    (keypad) 5 key 54
    Right arrow key 55
    (keypad) + key 56
    End key 57
    Down arrow key 58
    Page down key 59
    Insert key 60
    Delete key 61

    Comment

    • Savage
      Recognized Expert Top Contributor
      • Feb 2007
      • 1759

      #3
      Originally posted by BHARATH RS
      F1-F12 key 1 - 12
      Shift F1-F12 key 13 - 24
      Ctrl F1-F12 key 25 - 36
      Ctrl+shift F1-F12 key 37 - 48

      Home key 49
      Up arrow key 50
      Page Up key 51
      (keypad) - key 52
      Left arrow key 53
      (keypad) 5 key 54
      Right arrow key 55
      (keypad) + key 56
      End key 57
      Down arrow key 58
      Page down key 59
      Insert key 60
      Delete key 61
      I'm sorry but I must disagree with this.If u wish to find out those value you can build a simple programme:

      [CODE=cpp]int k;
      while((k=getch( ))!=27(ESC))
      {
      print k;
      }[/CODE]

      Comment

      Working...