2016-07-23 38 views

回答

0

如果您使用KeyPress事件,它將返回按下的按鍵的ascii代碼。你可以從那裏做那些你需要的信息。

Private Sub yourcontrol_KeyPress(KeyAscii as integer) 
if keyascii= 127 then 
'do some stuff 
end if 
end sub