Is there a limit of how many GUI's in a script?
Example:
#Include <GUIConstants.au3> GUICreate("1",200,200) GUISetState(@SW_HIDE) GUICreate("2",200,200) GUISetState(@SW_HIDE) GUICreate("3",200,200) GUISetState(@SW_HIDE) GUICreate("4",200,200) GUISetState(@SW_HIDE) GUICreate("5",200,200) GUISetState(@SW_HIDE) GUICreate("6",200,200) GUISetState(@SW_HIDE) GUICreate("7",200,200) GUISetState(@SW_HIDE) GUICreate("8",200,200) GUISetState(@SW_HIDE) GUICreate("9",200,200) GUISetState(@SW_HIDE) GUICreate("10",200,200) GUISetState(@SW_HIDE) GUICreate("11",200,200) GUISetState(@SW_HIDE) GUICreate("12",200,200) GUISetState(@SW_HIDE) GUICreate("13",200,200) GUISetState(@SW_HIDE) GUICreate("14",200,200) GUISetState(@SW_HIDE) GUICreate("15",200,200) GUISetState(@SW_HIDE) #CS GUICreate("16",200,200); Test GUI, try activate.. and then press button GUISetState(@SW_HIDE) #CE GUICreate("My GUI",300,330) $Button = GUIctrlcreatebutton("Push me",115,290,70,22) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() If $msg =$GUI_EVENT_CLOSE Then Exit If $msg = $Button Then msgbox(0,"","test") WEnd





