實用的GetForegroundWindow
發(fā)表時間:2023-08-15 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這個小例子就是用來演示如何得到Windows桌面上處于活動狀態(tài)的窗口的句柄的。使用一個Timer控件就可以搞定。在本例中再通過GetWindowText函數(shù)來處理得到句柄后的操作。1。新建一個標(biāo)準(zhǔn)V...
這個小例子就是用來演示如何得到Windows桌面上處于活動狀態(tài)的窗口的句柄的。
使用一個Timer控件就可以搞定。在本例中再通過GetWindowText函數(shù)來處理得到句柄后的操作。
1。新建一個標(biāo)準(zhǔn)VB6的EXE工程,加入Timer控件
2。API函數(shù)的聲明
private Declare Function GetForegroundWindow Lib "user32" () as Long
private Declare Function GetWindowText Lib "user32" _
Alias "GetWindowTextA" (byval hwnd as Long, _
byval lpString as string, byval cch as Long) as Long
3。在窗體的Load事件中加入代碼:
Private Sub Form_Load()
Timer1.Interval = 100 '設(shè)置間隔時間
End Sub
4。在Timer控件中的Timer事件中加入代碼:
Private Sub Timer1_Timer()
Static CurrentHwnd As Long
Dim ForegroundWindowHwnd As Long
Dim sText As String * 255
ForegroundWindowHwnd = GetForegroundWindow
If ForegroundWindowHwnd = CurrentHwnd Then Exit Sub
CurrentHwnd = ForegroundWindowHwnd
If CurrentHwnd <> hwnd Then
Caption = "ActiveWidow's Caption: " & Left$(sText, GetWindowText(CurrentHwnd, sText, 255))
Else
Caption = "ActiveWindow's Caption: Form1"
End If
End Sub
本程序在Win2000 + Vb6 中調(diào)試通過