SmokNiszczyciel Posted July 6, 2010 Posted July 6, 2010 I can't find what I need then I'll ask here: HOW do I make combobox?! Well I know how to "create" it in KODA but I don't know how to add 'strings' there and how to use it - how to make script check which string from combobox is choosen and if it's choosen then how to do action etc... Please I'm stuck with that for like 3h...
Developers Jos Posted July 6, 2010 Developers Posted July 6, 2010 Tried looking at the helpfile and the shown example? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Developers Jos Posted July 6, 2010 Developers Posted July 6, 2010 Yes i tried ... and ?Any code to show that doesn't work? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Info Posted July 6, 2010 Posted July 6, 2010 $GUI = GUICreate("GUI", 241, 68, -1, -1) $Checkbox = GUICtrlCreateCheckbox("Checkbox", 88, 8, 73, 17) $Button = GUICtrlCreateButton("Button", 88, 32, 75, 25) GUISetState(@SW_SHOW) While 1 Switch GUIGetMsg() Case -3 Exit Case $Button If GUICtrlRead($Checkbox) = 1 Then;checked Else;unchecked EndIf EndSwitch WEnd
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