Как сделать что-бы при запуске программы iza.exe она сразу-же пряталась в трей
Код:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 227, 87, 192, 124)
$Button1 = GUICtrlCreateButton("Button1", 8, 8, 209, 65)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
run("iza.exe")
EndSwitch
WEnd