Search the Community
Showing results for tags 'guictrlsetstate'.
-
Hello everyone, I have a radio button ($Radio1), which I want to disable as soon as another one get's checked (Radio5). (The system fails if the radio button i'm troubling with also gets checked). I know how to disable him: If GUICtrlRead($Radio1)=1 And Not BitAND(GUICtrlGetState($Ra...
- 5 replies
-
- guictrlsetstate
- enable
-
(and 1 more)
Tagged with:
-
I need to automate a specific GUI from a legacy system written in C. The spy tool gives me this I use this code Local $swintit = WinGetTitle("[active]") ConsoleWrite("active Window " & $swintit & @CRLF) If $swintit = "FILES NOTES" Then ; If $swintit = "FILES NOTES" Then ; g...
- 14 replies
-
- guictrlsetstate
- controlclick
-
(and 1 more)
Tagged with:
-
I have been trying to figure out how to get my GUI to do what I want. I am including sample code below that has what I'm working with. Essentially, what I want is for 4 list views to control the visibility and the ability to change data on a sub GUI. The primary gui has the 4 list views...
-
Hello, I am trying to hide all the controls in my GUI. Is it possible to do an easier way than to use GUICtrlSetState on every single Control I have?
- 5 replies
-
- gui
- hide controls
-
(and 1 more)
Tagged with:
-
None of GUICtrlSetState's states seem to click menu items. $GUI_DEFBUTTON puts the chosen item in bold but that's it. For example, if I have a menu called "File" (with "Open" and "Save"), I want a method to open the "File" tab. I realize I can use WinMenuSelectItem or use "&File" with Send("!F...