↑  ←  Описание функции


_WinAPI_FindWindow

Retrieves the handle to the top-level window whose class name and window name match

#include <WinAPI.au3>
_WinAPI_FindWindow($sClassName, $sWindowName)

Параметры

$sClassName A string that specifies the class name or is an atom that identifies the class-name string. If this parameter is an atom, it must be a global atom created by a call to the GlobalAddAtom function. The atom, a 16-bit value, must be placed in the low-order word of the $sClassName string and the high-order word must be zero.
$sWindowName Строка, которая определяет имя окна. If this parameter is blank, all window names match.

Возвращаемое значение

Успех:Возвращает дескриптор окна
Ошибка:Возвращает 0

См. также

Искать FindWindow в библиотеке MSDN

Пример

#include <WinAPI.au3>
$hWnd = _WinAPI_FindWindow('Progman', 'Program Manager')
MsgBox(0, 'Сообщение', 'Идентификатор окна "Рабочий стол" : ' & $hWnd)