【imx307 源码】【ddoshph源码】【espcms源码】vb键盘源码_vbs键盘代码
2024-11-30 02:40:40 来源:{typename type="name"/} 分类:{typename type="name"/}
1.vb 用键盘左右键控制 像框向左向右的键盘s键imx307 源码源代码
vb 用键盘左右键控制 像框向左向右的源代码
form_keypress 事件
if 按键的Ascii=vbkeyright then
imagebox.left=imagebox.left+你想每次移动的数值
endif
if 按键的ascii=vbkeyleft then
imagebox.left=imagebox.left-你想每次移动的数值
endif
end sub
我大概写出了方法 你自己试吧