Burgs Posted September 18, 2012 Share Posted September 18, 2012 Hello, This should be a simple question. According to the Help File for the 'GUICtrlGetState' command... Success: Returns the state. See GUICtrlSetState for values Failure: Returns -1 if control is not defined. However upon checking the 'State Table' for the 'GUICtrlSetState' the numeric values do not seem to be listed, only a listing of the various states...how do I know what the values represent that the GUICtrlGetState returns? Specifically what are 80 and 144? I believe they are 'enabled' and 'disabled' but where is that info given in the help file? Thanks in advance. Link to comment Share on other sites More sharing options...
FireFox Posted September 18, 2012 Share Posted September 18, 2012 (edited) Hi, I'm wondering why you are using GUICtrlGetState for another ctrl than a checkbox/radio. All the values are listed in the table, but you can put them together (e.g : DISABLED+CHECKED). So the best way for you to check the state would be to use the variables associated to the values like this : ;$myctrl is a checkbox visible, checked and disabled $iState = GUICtrlGetState($myctrl) ;144 If $iState = BitOR($GUI_SHOW, $GUI_CHECKED, $GUI_DISABLE) Then ;145 ... EndIf I wrote this before testing the script and as you can see the value is different from one..., maybe someone will tell us why. Br, FireFox. Edited September 18, 2012 by FireFox Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now