Add a textbox and 2 buttons: Change the buttons text's to Search Google and Search Youtube Double click on the Search Google button and add the following highlighted code: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Process.Start("iexplore", "http://www.google.com/search?hl=en&q=" + TextBox1.Text + "&aq=f&oq=") End Sub Double click on Search Youtube and add the following highlighted code: Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Process.Start("iexplore", "http://www.youtube.com/results?search_type=&search_query=" + TextBox1.Text + "&aq=f") End Sub Try out the program and you should be able to search Google and Youtube.