.版本 2
.DLL命令 GetWindow, 整数型, "user32", "GetWindow", , 获得一个窗口的句柄,该窗口与某源窗口有特定的关系
.参数 hwnd, 整数型, , 源窗口
.参数 wCmd, 整数型, , 指定结果窗口与源窗口的关系
.DLL命令 SetWindowTextA, 逻辑型, "user32.dll", "SetWindowTextA"
.参数 hWnd, 整数型
.参数 lpString, 文本型
.DLL命令 FindWindow, 整数型, "user32", "FindWindowA", , 寻找窗口列表中第一个符合指定条件的顶级窗口
.参数 lpClassName, 文本型, , 窗口类名
.参数 lpWindowName, 文本型, , 窗口文本(标题)
.版本 2
.常量 GW_CHILD, "5", , 查找子窗口
.常量 GW_HWNDNEXT, "2", , 查找下一窗口
.子程序 功能_取句柄, 整数型, ,
.局部变量 Hwd, 整数型
Hwd = FindWindow (“软件的类名”, “软件上的标题”)
Hwd = GetWindow (Hwd, #GW_CHILD)
Hwd = GetWindow (Hwd, #GW_CHILD)
Hwd = GetWindow (Hwd, #GW_CHILD)
SetWindowTextA (hwd,"你要修改的名字" )
返回(Hwd)