Hi everyone,
Does anyone know why the ESC button doesn't close my form in the second loop?
#include <GUIConstantsEx.au3>
GUICreate('test', 600, 400, -1, -1)
$BTN = GUICtrlCreateButton("Press", 10, 10, 80, 30)
GUISetState(@SW_SHOW)
While True
Switch GUIGetMsg()
Case $GUI_EVEN...