VB如何鼠标经过某程序获取标题名

 我来答
crazy0qwer
2012-12-02 · TA获得超过3300个赞
知道大有可为答主
回答量:4020
采纳率:71%
帮助的人:1316万
展开全部
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
Private Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal Hwnd As Long, ByVal lpString As String, ByVal cch As Long) As Long

Private Sub Command1_Click()
Timer1.Interval = 100
Timer1.Enabled = True
End Sub

Private Sub Timer1_Timer()
Dim strText As String * 256
Dim p As POINTAPI
GetCursorPos p '取鼠标所在位置坐标
hwnd1 = WindowFromPoint(p.X, p.Y) '获得鼠标所在位置窗口句柄
Call GetWindowText(hwnd1, strText, 256)
Label1.Caption = hwnd1 '标签一显示句柄
Label2.Caption = Left$(strText, InStr(1, strText, Chr(0)) - 1) '标签二显示标题
End Sub

控件:label1,label2,timer1,command1。
卧室娴娴
2012-12-02
知道答主
回答量:17
采纳率:0%
帮助的人:5.4万
展开全部
把鼠标放在文字上输入Ctrl加Alt加A就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
风雪剑无痕
2012-12-02 · TA获得超过1253个赞
知道大有可为答主
回答量:1691
采纳率:100%
帮助的人:1677万
展开全部
这个我想可以有,但我不敢奢望,考虑一下获取任务栏里的tooltip?但又如何得知鼠标经过了哪个程序呢?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式