Private Sub Command1_Click() Dim oIE As Object Dim oSC As Object Dim myURL As String Dim keyWord As String Set oIE = CreateObject("InternetExplorer.Application") Set oSC = CreateObject("ScriptControl") oSC.Language = "Jscript" keyWord = oSC.CodeObject.encodeURIComponent("VBレスキュー(花ちゃん)") Set oSC = Nothing ' myURL = "https://www.google.co.jp/search?ie=UTF-8&q=" & keyWord myURL = "http://search.yahoo.co.jp/search?p=" & keyWord & "&aq=-1&oq=&ei=UTF-8&fr=sfp_as&x=wrt" oIE.navigate myURL oIE.Visible = True Set oIE = Nothing End Sub