jimmy999 Posted August 23, 2012 Posted August 23, 2012 (edited) Hi, i have this line : $oIE.navigate(GUICtrlRead($Url) & $Line) and i whant to read another input, like this $oIE.navigate(GUICtrlRead($Url) & $Line here my another input to read(input2)....) how i can do this? tnx Edited August 23, 2012 by jimmy999
kylomas Posted August 23, 2012 Posted August 23, 2012 jimmy999, Show all of your code. Cannot determine anything from this one, incomplete line. kylomas Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill
bogQ Posted August 23, 2012 Posted August 23, 2012 (edited) if you$Input1 = GUICtrlCreateInput("", 10, 5, 300, 20)then your command is$oIE.navigate(GUICtrlRead($Input1) & $Line)if you$Input2 = GUICtrlCreateInput("", 10, 25, 300, 20)then your command is$oIE.navigate(GUICtrlRead($Input2) & $Line)or maby you need$oIE.navigate(GUICtrlRead($Input1) & $Line & GUICtrlRead($Input2))? Edited August 23, 2012 by bogQ TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
jimmy999 Posted August 23, 2012 Author Posted August 23, 2012 (edited) if you$Input1 = GUICtrlCreateInput("", 10, 5, 300, 20)then your command is$oIE.navigate(GUICtrlRead($Input1) & $Line)if you$Input2 = GUICtrlCreateInput("", 10, 25, 300, 20)then your command is$oIE.navigate(GUICtrlRead($Input2) & $Line)or maby you need$oIE.navigate(GUICtrlRead($Input1) & $Line & GUICtrlRead($Input2))?tnx man, this is it : $oIE.navigate(GUICtrlRead($Input1) & $Line & GUICtrlRead($Input2))works good Edited August 23, 2012 by jimmy999
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