Jump to content

Www.$inputbox1.de Call


 Share

Recommended Posts

Hello autoit forum members,

i have a gui with an input box, where i accept inputs like Internet urls...

a button then starts firefox with this url, i mean it doesnt at the moment :mellow:

firefox starts with the url www.3.de ????

why that ?

where is the problem ?

$Input1 = GUICtrlCreateInput("Suche", 0, 28, 100, 25, -1, $WS_EX_CLIENTEDGE)
.
.
.
case $msg = $Button7
    $rc = _RunDos("start http://www."&$input1 &".de")

can someone please show me the way for this i guess noob problem

thanx in advance and sorry for my english

:)

Henning

Link to comment
Share on other sites

Hello autoit forum members,

i have a gui with an input box, where i accept inputs like Internet urls...

a button then starts firefox with this url, i mean it doesnt at the moment :mellow:

firefox starts with the url www.3.de ????

why that ?

where is the problem ?

$Input1 = GUICtrlCreateInput("Suche", 0, 28, 100, 25, -1, $WS_EX_CLIENTEDGE)
.
.
.
case $msg = $Button7
    $rc = _RunDos("start http://www."&$input1 &".de")

can someone please show me the way for this i guess noob problem

thanx in advance and sorry for my english

:)

Henning

The 3 would be the control id try:

$rc = _RunDos("start http://www." & GuiCtrlRead($input1) &".de")

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

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