Topic: Ascii extended codes??
Author: menssenm@ucs.orst.edu (STUDLY)
Date: 23 Mar 1994 19:29:30 GMT Raw View
How do you check to see if an extended character has been
pressed on the keyboard??
I have all the ascii codes, including the extended codes but
the extended codes are the same as some of the normal ascii codes.
I heard something about a beginning zero or something!?
Could someone please tell me [& show me in code] how to do this?
Say i have this.....
c=getch(); //c is a char
if (c==77) //77 is ascii code for M and the right arrow??
{
doSomething();
}
THanks!!
Mark