VBA有Windows句柄时如何使用FindWindowEx

问题描述 投票:0回答:1

[我已经查看了提交问题时弹出的许多“相似问题”,但不幸的是,这些问题都不适合我的问题,而且它们全都在c ++或c#中。

找到 this,它帮助我获得了[[handle:

enter image description here

我的[[问题现在是我如何使用此

句柄

在此窗口上单击“否”:enter image description here我的

代码

下面的工作可正常无误地检索

handle(我认为手柄输出正确),但是我不确定要去哪里,在哪里寻求有关如何使用手柄的帮助单击“否”按钮。

非常感谢您为我指明正确的方向。Option Explicit Private Declare Function FindWindow Lib "User32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private Declare Function GetWindowText Lib "User32" Alias "GetWindowTextA" (ByVal hWnd As Long, ByVal lpString As String, ByVal nMaxCount As Long) As Long Private Declare Function GetWindowTextLength Lib "User32" Alias "GetWindowTextLengthA" (ByVal hWnd As Long) As Long Private Declare Function GetWindow Lib "User32" (ByVal hWnd As Long, ByVal uCmd As Long) As Long Private Declare Function IsWindowVisible Lib "User32" (ByVal hWnd As Long) As Boolean Private Const GW_HWNDNEXT = 2 Private Sub GetWindowHandle() Dim lhWndP As Long If GetHandleFromPartialCaption(lhWndP, "SAP GUI for Windows 740") = True Then If IsWindowVisible(lhWndP) = True Then MsgBox "Found VISIBLE Window Handle: " & lhWndP, vbOKOnly + vbInformation Else MsgBox "Found INVISIBLE Window Handle: " & lhWndP, vbOKOnly + vbInformation Debug.Print lhWndP End If Else MsgBox "Window not found!", vbOKOnly + vbExclamation End If End Sub Private Function GetHandleFromPartialCaption(ByRef lWnd As Long, ByVal sCaption As String) As Boolean Dim lhWndP As Long Dim sStr As String GetHandleFromPartialCaption = False lhWndP = FindWindow(vbNullString, vbNullString) 'PARENT WINDOW Do While lhWndP <> 0 sStr = String(GetWindowTextLength(lhWndP) + 1, Chr$(0)) GetWindowText lhWndP, sStr, Len(sStr) sStr = Left$(sStr, Len(sStr) - 1) If InStr(1, sStr, sCaption, vbTextCompare) > 0 Then GetHandleFromPartialCaption = True lWnd = lhWndP Exit Do End If lhWndP = GetWindow(lhWndP, GW_HWNDNEXT) Loop End Function
excel vba winapi hwnd
1个回答
0
投票
下面的代码可以完美地工作,并且将完全取代我以前的代码。

请注意,下面的这段代码更加简洁明了。

Option Explicit Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" _ (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private Const WM_COMMAND = &H111 Private Const IDNO = 7 Public Declare PtrSafe Function SendMessage Lib "user32.dll" Alias "SendMessageW" ( _ ByVal hwnd As LongPtr, _ ByVal wMsg As Long, _ ByVal wParam As LongPtr, _ ByVal lParam As LongPtr) As LongPtr Sub PressNo_SAPTimeout_Wnd() Dim hwnd As Long hwnd = FindWindow(vbNullString, "SAP GUI for Windows 740") If (hwnd <> 0) Then SendMessage hwnd, WM_COMMAND, IDNO, ByVal 0& Else MsgBox "Error finding message box!", vbOKOnly End If End Sub
© www.soinside.com 2019 - 2024. All rights reserved.