burners 0 Posted May 14, 2010 (edited) I had to edit this because I figured out my first question. Here is my second I have an inputbox and as the user checks boxes in the gui I want the default text in the input box to update. Thanks in Advance Edited May 14, 2010 by burners ~~--Feel Free to Steal my Sigs --~~FLAT LOOK____________________________________ROUNDED LOOK Share this post Link to post Share on other sites
burners 0 Posted May 14, 2010 I managed to answer both of my questions ~~--Feel Free to Steal my Sigs --~~FLAT LOOK____________________________________ROUNDED LOOK Share this post Link to post Share on other sites
Jayson 0 Posted May 14, 2010 Don't edit by deleting old question/stuff solved because other could benefit. Share this post Link to post Share on other sites
Aceguy 1 Posted May 17, 2010 (edited) like this... expandcollapse popup#Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_outfile=..\Test.exe #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include<array.au3> Opt("GUIOnEventMode", 1) $Form1 = GUICreate("Form1", 625, 445, 193, 125) GUISetState(@SW_SHOW) dim $Button[11] dim $label[11] $g=20 for $x=1 to ubound($Button)-1 $Button[$x] = GUICtrlCreateCheckbox("click me", 5, 24+$g, 65, 25) GUICtrlSetOnEvent(-1,"butt") $g+=20 Next $lbl=GUICtrlCreateinput("QTY",100,50,50,20) while 1 sleep(50) WEnd func butt() Local $iD = @GUI_CtrlId $lbl_ct=0 for $b=$button[1] to $button[10] if BitAnd(GUICtrlRead($b),$GUI_CHECKED) Then $lbl_ct+=1 EndIf Next GUICtrlSetData($lbl,$lbl_ct) EndFunc Edited May 17, 2010 by Aceguy [u]My Projects.[/u]Launcher - not just for games & Apps (Mp3's & Network Files)Mp3 File RenamerMy File Backup UtilityFFXI - Realtime to Vana time Clock Share this post Link to post Share on other sites