1个timer控件,interval=1000,一个按钮控件````用vb6.0
算了,给你个代码自己去研究吧.....
Dim x As Integer
Private Sub Command1_Click()
Timer1.Interval = IIf(Timer1.Interval = 0, 1000, 0) '一秒钟一次
Command1.Caption = IIf(Command1.Caption = "结束", "开始", "结束")
End Sub
Private Sub Timer1_Timer()
x = x + 1: If x = 480 Then x = 0
If x Mod 10 = 0 Then SendKeys "1" '小键盘上的数字1
If x Mod 8 = 0 Then SendKeys "3"
If x Mod 6 = 0 Then SendKeys "2"
End Sub
前提是你的游戏必须有焦点啊,这样发送的键子才能让你的游戏收到````
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)