Jump to content

Need to borrow Jaws Of Life.......


Recommended Posts

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???

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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?

You have to read the value of the variable before you can use it.

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."

 

WindowsError.gif

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

Link to comment
Share on other sites

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 by Uten
Link to comment
Share on other sites

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?

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."

 

WindowsError.gif

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

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...