Ra
Size: a a a
Ra
Ra
Ra
Ra
Ra
Ra
Ra
windows - How To Monitor Printserver Queues
AS
windows - How To Monitor Printserver Queues
Ra
Go into the Custom Filters section and set up filters and notifications based on your criteria.
KS
#include <AutoItConstants.au3>В конце выводит список из трёх элементов, третий из которых "BlueStacksApp"
#include <MsgBoxConstants.au3>
Local $hWnd = WinWait("BlueStacks", "", 1)
If $hWnd = 0 Then
MsgBox($MB_OK, "Info", "$hWnd is 0")
Else
MsgBox($MB_OK, "Info", "$hWnd ok!")
Local $sClassList = WinGetClassList($hWnd)
MsgBox($MB_OK, "Info", $sClassList)
EndIf
$hWnd
на Local $hWnd = WinWait("[CLASS:BlueStacksApp]", "", 1)Но теперь выводит
$hWnd is 0
, то есть не находит окно с таким классом. Почему так?Ra
#include <AutoItConstants.au3>В конце выводит список из трёх элементов, третий из которых "BlueStacksApp"
#include <MsgBoxConstants.au3>
Local $hWnd = WinWait("BlueStacks", "", 1)
If $hWnd = 0 Then
MsgBox($MB_OK, "Info", "$hWnd is 0")
Else
MsgBox($MB_OK, "Info", "$hWnd ok!")
Local $sClassList = WinGetClassList($hWnd)
MsgBox($MB_OK, "Info", $sClassList)
EndIf
$hWnd
на Local $hWnd = WinWait("[CLASS:BlueStacksApp]", "", 1)Но теперь выводит
$hWnd is 0
, то есть не находит окно с таким классом. Почему так?