VB命令按钮keydown事件的详细用法!
我想用VB写一个小游戏,用四个command命令按钮来控制image控件的上下左右,键盘上w,s,a,d对应这四个按钮控制上下左右,我想用keydown来完成,但课本上根...
我想用VB写一个小游戏,用四个command命令按钮来控制image控件的上下左右,键盘上w,s,a,d对应这四个按钮控制上下左右,我想用keydown来完成,但课本上根本没有讲过keydown的用法,哪位朋友能详细告诉我一下它的用法?
Private Sub Command1_KeyDown(KeyCode As Integer, Shift As Integer)其中的形参keycode和shift都是什么意思?
其实意思就是程序运行后按下w、s、a、d中的任一个就响应对应的命令按钮,而且一直按住w、s、a、d中的某个不放就能一直响应对应的按钮,在程序中表现出来就是image控件中的图形持续不间断地匀速移动(不管越界)。
就是下面这个意思:
const speed as integer = 100
按W:image1.top = image1.top - speed
按D:image1.left = image1.left + speed
希望各位朋友都能帮帮忙! 展开
Private Sub Command1_KeyDown(KeyCode As Integer, Shift As Integer)其中的形参keycode和shift都是什么意思?
其实意思就是程序运行后按下w、s、a、d中的任一个就响应对应的命令按钮,而且一直按住w、s、a、d中的某个不放就能一直响应对应的按钮,在程序中表现出来就是image控件中的图形持续不间断地匀速移动(不管越界)。
就是下面这个意思:
const speed as integer = 100
按W:image1.top = image1.top - speed
按D:image1.left = image1.left + speed
希望各位朋友都能帮帮忙! 展开
1个回答
展开全部
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case KEY_W:
//此处写你的代码
Case KEY_D:
//此处写你的代码
End Select
Select Case KeyCode
Case KEY_W:
//此处写你的代码
Case KEY_D:
//此处写你的代码
End Select
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询