Jump to content

Recommended Posts

Posted (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 by jimmy999
Posted

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

Posted (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 by bogQ

TCP server and client - Learning about TCP servers and clients connection
Au3 oIrrlicht - Irrlicht project
Au3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)



460px-Thief-4-temp-banner.jpg
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.

 
Posted (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 :ILA2:

Edited by jimmy999

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
  • Recently Browsing   0 members

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