X xiaoxiami0 Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-11 #1 菜鸟想问当按下键盘上的a键产生什么事件,代码怎么写?
H HunterTeam Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-11 #2 产生onKeyDown,onKeypress,onKeyUp事件, 可在onKeyDown中用showmessage(inttostr(key))来判断按下键的键值。 按下a时,在onkeyDown中这样执行它的命令:if key=65 then ..... 在onKeypress中:if key=#65 then .....
产生onKeyDown,onKeypress,onKeyUp事件, 可在onKeyDown中用showmessage(inttostr(key))来判断按下键的键值。 按下a时,在onkeyDown中这样执行它的命令:if key=65 then ..... 在onKeypress中:if key=#65 then .....