'Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long)'说明: 模拟一次鼠标事件'参数表
'参数                     类型及说明
'dwFlags                  Long 下述标志的一个组合
'MOUSEEVENTF_ABSOLUTE     dx和dy指定鼠标坐标系统中的一个绝对位置。在鼠标坐标系统中,屏幕在水平和垂直方向上均匀分割成65535×65535个单元
'MOUSEEVENTF_MOVE         移动鼠标
'MOUSEEVENTF_LEFTDOWN     模拟鼠标左键按下
'MOUSEEVENTF_LEFTUP       模拟鼠标左键抬起
'MOUSEEVENTF_RIGHTDOWN    模拟鼠标右键按下
'MOUSEEVENTF_RIGHTUP      模拟鼠标右键按下
'MOUSEEVENTF_MIDDLEDOWN   模拟鼠标中键按下
'MOUSEEVENTF_MIDDLEUP     模拟鼠标中键按下
'dx Long                  根据是否指定了MOUSEEVENTF_ABSOLUTE标志,指定水平方向的绝对位置或相对运动
'dy Long                  根据是否指定了MOUSEEVENTF_ABSOLUTE标志,指定垂直方向的绝对位置或相对运动
'cButtons                 Long,未使用
'dwExtraInfo Long         通常未用的一个值。用GetMessageExtraInfo函数可取得这个值。可用的值取决于特定的驱动程序

解决方案 »

  1.   

    SetCursorPos VB声明 
    Declare Function SetCursorPos Lib "user32" Alias "SetCursorPos" (ByVal x As Long, ByVal y As Long) As Long 
    说明 
    设置指针的位置 
    返回值 
    Long,非零表示成功,零表示失败。会设置GetLastError 
    参数表 
    参数 类型及说明 
    x,y 鼠标指针在屏幕像素坐标系统中的X,Y位置 'Flat Button
    'This project needs
    'a Form, called 'Form1'
    'a Picture Box, called 'ExplButton' (50x50 pixels)
    'a Picture Box with an icon in it, called 'picIcon'
    'two timers (Timer1 and Timer2), both with interval 100
    'Button, called 'Command1'
    'In general section
    Private Type RECT
        Left As Long
        Top As Long
        Right As Long
        Bottom As Long
    End Type
    Private Type POINTAPI
        X As Long
        Y As Long
    End Type'Declare the API-Functions
    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
    Private Declare Function GetWindowRect Lib "user32" (ByVal hwnd As Long, lpRect As RECT) As Long
    Sub DrawButton(Pushed As Boolean)
        Dim Clr1 As Long, Clr2 As Long
        If Pushed = True Then
            'If Pushed=True then clr1=Dark Gray
            Clr1 = &H808080
            'If Pushed=True then clr1=White
            Clr2 = &HFFFFFF
        ElseIf Pushed = False Then
            'If Pushed=True then clr1=White
            Clr1 = &HFFFFFF
            'If Pushed=True then clr1=Dark Gray
            Clr2 = &H808080
        End If    With Form1.ExplButton
            ' Draw the button
            Form1.ExplButton.Line (0, 0)-(.ScaleWidth, 0), Clr1
            Form1.ExplButton.Line (0, 0)-(0, .ScaleHeight), Clr1
            Form1.ExplButton.Line (.ScaleWidth - 1, .ScaleHeight - 1)-(.ScaleWidth - 1, 0), Clr2
            Form1.ExplButton.Line (.ScaleWidth - 1, .ScaleHeight - 1)-(0, .ScaleHeight - 1), Clr2
        End With
    End Sub
    Private Sub Command1_Click()
        Dim Rec As RECT
        'Get Left, Right, Top and Bottom of Form1
        GetWindowRect Form1.hwnd, Rec
        'Set Cursor position on X
        SetCursorPos Rec.Right - 15, Rec.Top + 15
    End Sub
    Private Sub ExplButton_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
        DrawButton True
    End Sub
    Private Sub ExplButton_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
        DrawButton False
    End Sub
    Private Sub ExplButton_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
        DrawButton False
    End Sub
    Private Sub Form_Load()
        'KPD-Team 1998
        'URL: http://www.allapi.net/
        'E-Mail: [email protected]    Dim Stretched As Boolean
        'picIcon.Visible = False
        'API uses pixels
        picIcon.ScaleMode = vbPixels
        'No border
        ExplButton.BorderStyle = 0
        'API uses pixels
        ExplButton.ScaleMode = vbPixels
        'Set graphic mode te 'persistent graphic'
        ExplButton.AutoRedraw = True
        'API uses pixels
        Me.ScaleMode = vbPixels
        'Set the button's caption
        Command1.Caption = "Set Mousecursor on X"    ' If you set Stretched to true then stretch the icon to te Height and Width of the button
        ' If Stretched=False, the icon will be centered
        Stretched = False    If Stretched = True Then
            ' Stretch the Icon
            ExplButton.PaintPicture picIcon.Picture, 1, 1, ExplButton.ScaleWidth - 2, ExplButton.ScaleHeight - 2
        ElseIf Stretched = False Then
            ' Center the picture of the icon
            ExplButton.PaintPicture picIcon.Picture, (ExplButton.ScaleWidth - picIcon.ScaleWidth) / 2, (ExplButton.ScaleHeight - picIcon.ScaleHeight) / 2
        End If
        ' Set icon as picture
        ExplButton.Picture = ExplButton.Image
    End Sub
    Private Sub Timer1_Timer()
        Dim Rec As RECT, Point As POINTAPI
        ' Get Left, Right, Top and Bottom of Form1
        GetWindowRect Me.hwnd, Rec
        ' Get the position of the cursor
        GetCursorPos Point    ' If the cursor is located above the form then
        If Point.X >= Rec.Left And Point.X <= Rec.Right And Point.Y >= Rec.Top And Point.Y <= Rec.Bottom Then
            Me.Caption = "MouseCursor is on form."
        Else
            ' The cursor is not located above the form
            Me.Caption = "MouseCursor is not on form."
        End If
    End Sub
    Private Sub Timer2_Timer()
        Dim Rec As RECT, Point As POINTAPI
        ' Get Left, Right, Top and Bottom of ExplButton
        GetWindowRect ExplButton.hwnd, Rec
        ' Get the position of the cursor
        GetCursorPos Point
        ' If the cursor isn't located above ExplButton then
        If Point.X < Rec.Left Or Point.X > Rec.Right Or Point.Y < Rec.Top Or Point.Y > Rec.Bottom Then ExplButton.Cls
    End Submouse_event VB声明 
    Declare Sub mouse_event Lib "user32" Alias "mouse_event" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long) 
    说明 
    模拟一次鼠标事件 
    参数表 
    参数 类型及说明 
    dwFlags Long,下述标志的一个组合 
    MOUSEEVENTF_ABSOLUTE dx和dy指定鼠标坐标系统中的一个绝对位置。在鼠标坐标系统中,屏幕在水平和垂直方向上均匀分割成65535×65535个单元 
    MOUSEEVENTF_MOVE 移动鼠标 
    MOUSEEVENTF_LEFTDOWN 模拟鼠标左键按下 
    MOUSEEVENTF_LEFTUP 模拟鼠标左键抬起 
    MOUSEEVENTF_RIGHTDOWN 模拟鼠标右键按下 
    MOUSEEVENTF_RIGHTUP 模拟鼠标右键按下 
    MOUSEEVENTF_MIDDLEDOWN 模拟鼠标中键按下 
    MOUSEEVENTF_MIDDLEUP 模拟鼠标中键按下 
    dx Long,根据是否指定了MOUSEEVENTF_ABSOLUTE标志,指定水平方向的绝对位置或相对运动 
    dy Long,根据是否指定了MOUSEEVENTF_ABSOLUTE标志,指定垂直方向的绝对位置或相对运动 
    cButtons Long,未使用 
    dwExtraInfo Long,通常未用的一个值。用GetMessageExtraInfo函数可取得这个值。可用的值取决于特定的驱动程序 
    注解 
    进行相对运动的时候,由SystemParametersInfo函数规定的系统鼠标轨迹速度会应用于鼠标运行的速度
     
    'Mouse Event
    'Before you start this program, I suggest you save everything that wasn't saved yet.
    Private Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long)
    Const MOUSEEVENTF_LEFTDOWN = &H2
    Const MOUSEEVENTF_LEFTUP = &H4
    Const MOUSEEVENTF_MIDDLEDOWN = &H20
    Const MOUSEEVENTF_MIDDLEUP = &H40
    Const MOUSEEVENTF_MOVE = &H1
    Const MOUSEEVENTF_ABSOLUTE = &H8000
    Const MOUSEEVENTF_RIGHTDOWN = &H8
    Const MOUSEEVENTF_RIGHTUP = &H10
    Private Sub Form_Activate()
        'KPD-Team 1998
        'URL: http://www.allapi.net/
        'E-Mail: [email protected]
        Do
            'Simulate a mouseclick on the cursor's position
            mouse_event MOUSEEVENTF_LEFTDOWN Or MOUSEEVENTF_LEFTUP, 0&, 0&, cButt, dwEI
            DoEvents
        Loop
    End Sub
      

  2.   

    在PLANET-SOURCE-CODE.COM上看到过这样的代码,找一下。