Dim objIE Set objIE = CreateObject("InternetExplorer.Application") With objIE .MenuBar = False .AddressBar = False .StatusBar = False .ToolBar = False .Navigate "http://www.google.com" .Visible = True End With Set objIE = Nothing Ruben Vigón