• vb随机移动鼠标


    新建一工程,放一个按钮command1,放一个时钟timer1,拷贝下列代码运行,按按钮一下会发现鼠标随机移动,碰到边界会反弹,再按按钮一下(或回车键)会停止。
    '*****************************拷贝下列代码*****************************************

    Private Type POINTAPI
            x As Long
            y As Long
    End Type
    Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
    Private Declare Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y As Long) As Long
    
    Dim rndX As Integer, rndY As Integer  '定义随机移动方向和速率
    
    Private Sub Command1_Click()
      If rndX <> 0 And rndY <> 0 Then
        rndX = 0
        rndY = 0
        Exit Sub
      End If
      While rndX = 0
        rndX = Rnd * 20 - 10
      Wend
      While rndY = 0
        rndY = Rnd * 20 - 10
      Wend
    End Sub
    
    Private Sub Form_Load()
      Timer1.Interval = 10
    End Sub
    
    Private Sub Timer1_Timer()
      Dim pos As POINTAPI, x As Long, y As Long
      If rndX = 0 And rndY = 0 Then
        Rnd
        Exit Sub
      End If
      GetCursorPos pos
      x = pos.x + rndX
      y = pos.y + rndY
      If x < 20 Then
        x = 20
        rndX = rndX * (-1)
      End If
      If x >= Screen.Width / 15 - 60 Then
        x = Screen.Width / 15 - 60
        rndX = rndX * (-1)
      End If
      If y < 20 Then
        y = 20
        rndY = rndY * (-1)
      End If
      If y >= Screen.Height / 15 - 100 Then
        y = Screen.Height / 15 - 100
        rndY = rndY * (-1)
      End If
      SetCursorPos x, y
    End Sub
    转自:http://bbs.bccn.net/thread-407793-1-1.html
  • 相关阅读:
    全面质量管理-质量管理水平(二)
    全面质量管理-质量管理历史发展概述(一)
    浅谈性能测试流程
    git本地分支与远程分支关联与解除关联
    Sourcetree 代码管理
    HttpRunner3.x 学习8-参数化数据驱动
    HttpRunner3.x 学习6-hook机制
    PHP =>和->区别
    FineBI:实现仪表板分享
    椭圆型方程网格生成法
  • 原文地址:https://www.cnblogs.com/luotingliang/p/7251030.html
Copyright © 2020-2023  润新知