2021. 3. 15. 23:47

VB.NET FindWindow, FindWindowEX API + Microsoft Spy++ V10.0

 

FindWindow API

- www.pinvoke.net/default.aspx/user32/FindWindow.html

 

pinvoke.net: FindWindow (user32)

Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't. To create a page in a module other than user32, prefix the name with the module name and a period. FindWindow (user32) . Summary The FindWindow func

www.pinvoke.net

FindWindowEx API

- www.pinvoke.net/default.aspx/user32/FindWindowEx.html

 

pinvoke.net: FindWindowEx (user32)

Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't. To create a page in a module other than user32, prefix the name with the module name and a period. FindWindowEx (user32) . Summary C# Signature: [Dl

www.pinvoke.net

 

Microsoft Spy++ V10.0.zip
5.31MB

 

        NoteFind = FindWindow("Notepad", "테스트용 - Windows 메모장")
        NoteFindEx = FindWindowEx(NoteFind, 0&, "Edit", vbNullString)

 

    Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As IntPtr
    Private Declare Auto Function FindWindowEx Lib "user32.dll" (
    ByVal hwndParent As IntPtr,
    ByVal hwndChildAfter As IntPtr,
    ByVal lpszClass As String,
    ByVal lpszWindow As String
    ) As IntPtr

        Dim NoteFind As String
        Dim NoteFindEx As String
    
        NoteFind = FindWindow("Notepad", "테스트용 - Windows 메모장")
        NoteFindEx = FindWindowEx(NoteFind, 0&, "Edit", vbNullString)

'VB.NET' 카테고리의 다른 글

VB.NET WinHttp.WinHttpRequest  (3) 2021.03.31
VB.NET 이미지서치 ImageSearchDLL.dll  (1) 2021.03.16
alert 없애기  (0) 2020.07.11
웹연동 소스  (0) 2020.07.11
유틸리티 Microsoft Spy++ V10.0 다운로드  (0) 2019.11.04
유틸리티 API뷰어(Winapi) 다운로드  (0) 2019.11.03
vb.net SendInput  (0) 2019.08.28
웹연동  (0) 2019.08.26
참조 추가 Management  (0) 2019.08.20
핸들값  (0) 2019.08.12
Posted by 블로그(8109)