James Posted December 23, 2006 Share Posted December 23, 2006 (edited) Google SearchI know its been done before, but I wanted ago too!How to use:Just type in the box and press enter or type in the box and click Go!Thanks to:PaulIA - For helping me with the google search code, that would never work for me.;------------------------------------------------ ; ; Name: Google Searcher ; Author: Secure_ICT ; Description: Search google from your desktop! ; Credit: PaulIA - The google search code ; Version: 1.0 ; ;----------------------------------------------- #include <GUIConstants.au3> $Window = GUICreate("Google Search", 381, 43, 193, 115) $Label = GUICtrlCreateLabel("Search:", 8, 8, 41, 17) $Input = GUICtrlCreateInput("", 56, 8, 217, 21) $Go = GUICtrlCreateButton("Go!", 280, 8, 89, 25, 0) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Go ShellExecute("www.google.com/search?q=" & GUICtrlRead($Input)) Case $Input ShellExecute("www.google.com/search?q=" & GUICtrlRead($Input)) EndSwitch WEndSecureMerry Christmas! Edited December 23, 2006 by Secure_ICT Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ Link to comment Share on other sites More sharing options...
James Posted December 23, 2006 Author Share Posted December 23, 2006 Oh yeah I forgot to mention that it requires beta! Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ Link to comment Share on other sites More sharing options...
James Posted December 23, 2006 Author Share Posted December 23, 2006 That sounds good to me! Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ Link to comment Share on other sites More sharing options...
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