Thank You ankur for reply,
But This is not working.....! As per your code it is returning a ASCII value of "F" not "F11"...., for all Functional keys .. it is returning same value "70" i.e, ASCII value of "F"...
check this
print asc("`") --> 126
print asc("~") --> 96
These two are getting different ascii value for single key in keyboard... bcoz they are special char's not a functioning keys or char's.
I hope for function keys also contain some ASCII Value.
But This is not working.....! As per your code it is returning a ASCII value of "F" not "F11"...., for all Functional keys .. it is returning same value "70" i.e, ASCII value of "F"...
check this
print asc("`") --> 126
print asc("~") --> 96
These two are getting different ascii value for single key in keyboard... bcoz they are special char's not a functioning keys or char's.
I hope for function keys also contain some ASCII Value.

