Try the .NET way
shIE = New SHDocVw.InternetExplorer()
With shIE
.AddressBar = False
.FullScreen = False
.MenuBar = False
.Resizable = True
.StatusBar = False
.TheaterMode = False
.ToolBar = Convert.ToInt32(False)
.Height = 575
.Width = 750
.Top = 20
.Left = 20
.Visible = True
Call .Navigate(URL)
End With