查看: 7  |  回复: 0
  VB6 得到鼠标光标下窗口的句柄,子程序WindowFromMouse
楼主
发表于 昨天 17:44

新建From1(窗体),新建Text1(TextBox,MultiLine选True,ScrollBars选3),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 Declare Function WindowFromPoint Lib "user32" (ByVal xPoint As Long, ByVal yPoint As Long) As Long

' Return the handle of the window under the mouse cursor.

Function WindowFromMouse() As Long
    Dim lpPoint As POINTAPI
    GetCursorPos lpPoint
    WindowFromMouse = WindowFromPoint(lpPoint.X, lpPoint.Y)
End Function

Private Sub Command1_Click()
    Text1.Text = WindowFromMouse
End Sub


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