魔兽争霸的句柄怎么找?

来源:百度知道 编辑:UC知道 时间:2024/05/16 19:58:00
用FINDWINDOW 怎么找 /?
窗口叫什么 找不来啊 高手帮忙

给你写段吧 N久前写的现在依然在用
模块代码
模块知道怎么加吧 如果不知道直接Q我310263907得了详细解说

Option Explicit
''''''''''''''''''''''''定义API''''''''''''''''''''''''''''
Public Declare Function GetNextWindow Lib "user32" Alias "GetWindow" (ByVal hwnd As Long, ByVal wFlag 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 Declare Function FindWindowa Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

Public Declare Function GetForegroundWindow Lib "user32" () As Long
'''''