HiddenBullet Posted December 9, 2008 Posted December 9, 2008 Hey im trying to make so if the user types something into the input box it will go to http://dictionary.reference.com/browse/(the word they typed)i have this:$Search = InputBox("Search Definition", "Type Word Here") ShellExecute("http://dictionary.reference.com/browse/")How would i do that? any help would be appreciated
Rental Posted December 9, 2008 Posted December 9, 2008 $Search = InputBox("Search Definition", "Type Word Here") $site = GUICtrlRead ( $Search ) ShellExecute("http://dictionary.reference.com/browse/"&$site)
HiddenBullet Posted December 9, 2008 Author Posted December 9, 2008 $Search = InputBox("Search Definition", "Type Word Here")$site = GUICtrlRead ( $Search )ShellExecute("http://dictionary.reference.com/browse/"&$site)Thanks alot man! i really appreciate it
Mattraks Posted December 9, 2008 Posted December 9, 2008 (edited) $sSearch = InputBox("Search Definition", "Type Word Here") ShellExecute("http://dictionary.reference.com/browse/" & $sSearch) The script posted by Rental is going to always search 0 because they used GUICtrlRead when there is no GUI involved. Edited December 9, 2008 by Mattraks
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