hsoltau 0 Posted April 2, 2006 Share Posted April 2, 2006 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 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 post Share on other sites
GaryFrost 18 Posted April 2, 2006 Share Posted April 2, 2006 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 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 post Share on other sites
hsoltau 0 Posted April 2, 2006 Author Share Posted April 2, 2006 The 3 would be the control id try: $rc = _RunDos("start http://www." & GuiCtrlRead($input1) &".de") thank you gafrost, boy that was fast and easy, ilove autoit and start to love this forum... Henning Link to post Share on other sites
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