查看: 536  |  回复: 0
  VB6 获得鼠标的位置
楼主
发表于 2023年4月19日 15:32

新建From1(窗体),新建Command1(按钮CommandButton),代码:

Private Type POINTAPI
    x As Long
    y As Long
End Type

Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long

Private Sub Command1_Click()
    Dim p As POINTAPI
    Call GetCursorPos(p)
    '(p.x, p.y)为鼠标位置
    MsgBox "X=" & p.x & " Y=" & p.y
End Sub


您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com