ThaSatelliteGuy Posted January 10, 2007 Posted January 10, 2007 Yes.... Could someone loan me a Jaws-of-Life so I can pry my head out of my @$$!!! Please tell me why I can't get this to return the value I type in the box!! I know it's stupid, but I keep staring at it, and I'm brain farting! GUICtrlCreateLabel ("Enter Work Order Number:",20, 250) $Input = GUICtrlCreateInput("",30,270,100,20) MsgBox(0,"",$Input) ----- Returns Integer (Expected) $WONUMARRAY[$Cnt] = GUICtrlRead($Input) MsgBox(0,"",$Cnt & $WONUMARRAY[$Cnt]) ---- Also Returns Integer ----- WHY???
ThaSatelliteGuy Posted January 10, 2007 Author Posted January 10, 2007 Yes.... Could someone loan me a Jaws-of-Life so I can pry my head out of my @$$!!! Please tell me why I can't get this to return the value I type in the box!! I know it's stupid, but I keep staring at it, and I'm brain farting! GUICtrlCreateLabel ("Enter Work Order Number:",20, 250) $Input = GUICtrlCreateInput("",30,270,100,20) MsgBox(0,"",$Input) ----- Returns Integer (Expected) $WONUMARRAY[$Cnt] = GUICtrlRead($Input) MsgBox(0,"",$Cnt & $WONUMARRAY[$Cnt]) ---- Also Returns Integer ----- WHY???WAIT!!! The second integer is my counter!!!! - - $Cnt Got that! So Why then is it returning NOTHING So it's not an integer, it's blank, but it should be returning my typed in value right?
nitekram Posted January 10, 2007 Posted January 10, 2007 WAIT!!! The second integer is my counter!!!! - - $CntGot that! So Why then is it returning NOTHING So it's not an integer, it's blank, but it should be returning my typed in value right?You have to read the value of the variable before you can use it. 2¢ All by me:"Sometimes you have to go back to where you started, to get to where you want to go." "Everybody catches up with everyone, eventually" "As you teach others, you are really teaching yourself." From my dad "Do not worry about yesterday, as the only thing that you can control is tomorrow." WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2 AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit Docs SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language Programming Tips Excel Changes ControlHover.UDF GDI_Plus Draw_On_Screen GDI Basics GDI_More_Basics GDI Rotate GDI Graph GDI CheckExistingItems GDI Trajectory Replace $ghGDIPDll with $__g_hGDIPDll DLL 101? Array via Object GDI Swimlane GDI Plus French 101 Site GDI Examples UEZ GDI Basic Clock GDI Detection Ternary operator
ThaSatelliteGuy Posted January 10, 2007 Author Posted January 10, 2007 You have to read the value of the variable before you can use it.Isn't this line reading it?? $WONUMARRAY[$Cnt] = GUICtrlRead($Input)
Uten Posted January 10, 2007 Posted January 10, 2007 (edited) In the sample you have provided the Input control is empty. So when you read it its will be....... Untested sample: GUICtrlCreateLabel ("Enter Work Order Number:",20, 250) $Input = GUICtrlCreateInput("Geting this?",30,270,100,20) GuiSetState() MsgBox(0,"",$Input) ----- Returns Integer (Expected) $WONUMARRAY[$Cnt] = GUICtrlRead($Input) MsgBox(0,"",$Cnt & @TAB & $WONUMARRAY[$Cnt]) ---- Also Returns Integer ----- WHY??? EDIT: You need a GuiSetState() in there to Edited January 10, 2007 by Uten Please keep your sig. small! Use the help file. Search the forum. Then ask unresolved questions :) Script plugin demo, Simple Trace udf, TrayMenuEx udf, IOChatter demo, freebasic multithreaded dll sample, PostMessage, Aspell, Code profiling
nitekram Posted January 10, 2007 Posted January 10, 2007 you beat me to it but I felt I still had to post #include <GUIConstants.au3> GUICreate("My GUI") GUICtrlCreateLabel ("Enter Work Order Number:",20, 250) $Input = GUICtrlCreateInput("",30,270,100,20) $btn = GUICtrlCreateButton ("Ok", 40, 75, 60, 20) GUISetState (@SW_SHOW) While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop If $msg = $btn Then $test = GUICtrlRead($Input) MsgBox(0,"",$test) EndIf Wend does this help? 2¢ All by me:"Sometimes you have to go back to where you started, to get to where you want to go." "Everybody catches up with everyone, eventually" "As you teach others, you are really teaching yourself." From my dad "Do not worry about yesterday, as the only thing that you can control is tomorrow." WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2 AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit Docs SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language Programming Tips Excel Changes ControlHover.UDF GDI_Plus Draw_On_Screen GDI Basics GDI_More_Basics GDI Rotate GDI Graph GDI CheckExistingItems GDI Trajectory Replace $ghGDIPDll with $__g_hGDIPDll DLL 101? Array via Object GDI Swimlane GDI Plus French 101 Site GDI Examples UEZ GDI Basic Clock GDI Detection Ternary operator
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