Accessing applications outside of the C# program
Can someone show me how to search google using an application in C#. What I want to know is how to code a program so that when I press a button the text in a textbox will be entered into the search bar on google and then it will search for that on google but without me doing it manually.
Sorry its badly explained but I could really do with help with this.
Re: Accessing applications outside of the C# program
Try this
Code:
System.Diagnostics.Process.Start(string.Format("http://google.com/search?q={0}", textBox1.Text));