Haveskillz Posted June 4, 2006 Posted June 4, 2006 hello, i made an input box. #Region --- CodeWizard generated code Start --- ;InputBox features: Title=Yes, Prompt=Yes, Default Text=No, Width=1, Height=140, Left=1, Top=1 If Not IsDeclared("sInputBoxAnswer") Then Dim $sInputBoxAnswer $sInputBoxAnswer = InputBox("Important - Question","Even Je Naam Invullen A.U.B!" & @CRLF & "Groetjes, Jimmy",""," ","1","140","1","1") Select Case @Error = 0;OK - The string returned is valid Case @Error = 1;The Cancel button was pushed Case @Error = 3;The InputBox failed to open EndSelect #EndRegion --- CodeWizard generated code End --- i also made a myGUI $Label_10 = GuiCtrlCreateLabel("Welcome, NAME", 30, 20, 110, 20) like you know you need to fill something in @ Input box if someone fill in;; BLAAAT then i want the label;; says Welcome, BLAAAT etc because this si a family comp ! Regards, Skillz
Xenobiologist Posted June 4, 2006 Posted June 4, 2006 Hi, MsgBox(0,"Input", $sInputBoxAnswer) So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
Haveskillz Posted June 4, 2006 Author Posted June 4, 2006 $Label_10 = GuiCtrlCreateLabel("MsgBox(0,"Input", Welcome, $sInputBoxAnswer)", 30, 20, 110, 20) dont work :/
314 Posted June 4, 2006 Posted June 4, 2006 i don't know how to do it becuase i'm pretty noob but try an if statment like if text in answer box is imputed then change title to
cppman Posted June 4, 2006 Posted June 4, 2006 (edited) $Label_10 = GuiCtrlCreateLabel("Welcome " & $sInputBoxAnswer, 30, 20, 110, 20) oÝ÷ Ù»p§¶êé¢Ë^vØZµÊzÝýÙjwè®+m¡·¢Ø^¦Þ×±´pjÈî²Ö§{¦¦W¨~0¶b²ZÊØ^½ªâi¹^jëh×6 MsgBox(0, "This is the title", "Welcome, " & $sInputBoxAnswer) Edited June 4, 2006 by CHRIS95219 Miva OS Project
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