Hello,
Does anyone know how to open Internet Explorer from Excel and automatically maximize? I can do this:
vURL = Worksheets("Sheet1").Range("B12").Value
If vURL = "" Then vURL = "http://www.google.com"
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = 1
objIE.Fullscreen = 1
objIE.navigate vURL
However, using fullscreen here causes all of the menu bars, etc. to disappear. I tried
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = 1
objIE.Fullscreen = 1
objIE.MenuBar = 1
objIE.resizable = 1
objIE.ScrollBars = 1
objIE.titleBar = 1
objIE.Toolbar = 1
but I get error messages. The window will need to adjust to the screen resolution of the person maximizing it -- I can't just set height and width. Can anyone help with this?
Thanks,
Catalpa
Does anyone know how to open Internet Explorer from Excel and automatically maximize? I can do this:
vURL = Worksheets("Sheet1").Range("B12").Value
If vURL = "" Then vURL = "http://www.google.com"
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = 1
objIE.Fullscreen = 1
objIE.navigate vURL
However, using fullscreen here causes all of the menu bars, etc. to disappear. I tried
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = 1
objIE.Fullscreen = 1
objIE.MenuBar = 1
objIE.resizable = 1
objIE.ScrollBars = 1
objIE.titleBar = 1
objIE.Toolbar = 1
but I get error messages. The window will need to adjust to the screen resolution of the person maximizing it -- I can't just set height and width. Can anyone help with this?
Thanks,
Catalpa