如何使用vba在windowapi中使用findwindow函数找到窗口?

RAJ*_*VAR 6 excel vba window user32 excel-vba

我目前正在尝试使用Findwindow函数找到检查窗口是否打开的方法.如果我知道窗口的整个名称,我就能找到窗口.在下面的代码我知道窗口的名称是"win32api - 记事本",所以我可以很容易地找到窗口,但我想知道是否有可能识别窗口,如果我只知道像"win32*"的部分名称.

Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

Sub runapplication()


hwnd = FindWindow(vbNullString, "win32api - Notepad")
MsgBox (hwnd)
End Sub
Run Code Online (Sandbox Code Playgroud)

Com*_*ern 6

一种方法是使用EnumWindows API 函数。由于它通过回调函数运行,因此您需要将条件和结果缓存在调用函数范围之外的某处:

Public Declare Function EnumWindows Lib "user32" (ByVal lpEnumFunc As Long, _
                                                  ByVal param As Long) As Long
Public Declare Function IsWindowVisible Lib "User32" (ByVal hWnd As Long) As Long
Public Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" _
                                                 (ByVal hwnd As Long, _
                                                  ByVal lpString As String, _
                                                  ByVal cch As Long) As Long
Public Const MAX_LEN = 260

Public results As Dictionary
Public criteria As String

Public Sub Example()
    criteria = "win32*"
    Set results = New Dictionary
    Call EnumWindows(AddressOf EnumWindowCallback, &H0)
    Dim result As Variant
    For Each result In results.Keys
        Debug.Print result & " - " & results(result)
    Next result
End Sub

Public Function EnumWindowCallback(ByVal hwnd As Long, ByVal param As Long) As Long
    Dim retValue As Long
    Dim buffer As String       
    If IsWindowVisible(hwnd) Then
        buffer = Space$(MAX_LEN)
        retValue = GetWindowText(hwnd, buffer, Len(buffer))
        If retValue Then
            If buffer Like criteria Then
                results.Add hwnd, Left$(buffer, retValue)
            End If
        End If
    End If
    EnumWindowCallback = 1
End Function
Run Code Online (Sandbox Code Playgroud)