RE: Q
- Posted by Mike <vulcan at win.co.nz> Feb 26, 2002
- 410 views
Hi George, Key F2 is a special (non-printable) key and is captured through the onKeyDown event (also onKeyUp). It has a code of #71 (see w32keys.e) which is 113 decimal. Key 'q' is captured through onKeyPress event and has an ascii code of..113. At a guess I would say that the problem is that there is some overlap occurring with the above key events. Mike gwalters at sc.rr.com wrote: > on furthur investigation it seems that both 'F2' and 'q' are returning > the > same keycode and shift. Both are 113 and 0. How do I solve this?? > george > > vulcan at win.co.nz