sergeyWolf 0 Posted August 6, 2011 $GUI_log = GUICreate ("Log of actions", 400, 700, -1, -1, -1, -1, $GUI_main) GUISetState (@SW_HIDE, $GUI_log) i need some like If GUICtrlGetState ($GUI_coord) = @SW_SHOW Then ; ..something happen,, EndIf ps: this example doesn't work - I want program that crack all other programs...- Let's split up, i'll search this program and you'll find crack for it. ^_^' Share this post Link to post Share on other sites
martin 85 Posted August 7, 2011 (edited) $GUI_log = GUICreate ("Log of actions", 400, 700, -1, -1, -1, -1, $GUI_main) GUISetState (@SW_HIDE, $GUI_log) i need some like If GUICtrlGetState ($GUI_coord) = @SW_SHOW Then ; ..something happen,, EndIf ps: this example doesn't work You need WinGetState. EDIT: No you don't. I thought you were trying to get the state of a window. Refer instead to monoscout999's post which follows. Edited August 7, 2011 by martin Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script. Share this post Link to post Share on other sites
monoscout999 10 Posted August 7, 2011 @SW_SHOW Doesn`t work with controls look for the GUICtrlSetState() function in the help. there`s a list there where you can see the values you can get from GuiCtrlGetState() function. Share this post Link to post Share on other sites