
Invisible Scrollbars in IE-Window
Add the following line to your code:
objBrowser.document.write "<head></head><body scroll=yes></body>"
It might not be the best way, but it worked for me...
Quote:
> Hi
> I'm looking for a solution to hide the scrollbars in the Internet Explorer
> Window. The Window will have a fixed size and will not be resizable.
> Set objBrowser = WScript.CreateObject("InternetExplorer.Application")
> objBrowser.left=300
> objBrowser.top = 300
> objBrowser.height = 284
> objBrowser.width = 380
> objBrowser.visible = 1
> objBrowser.menubar = 0
> objBrowser.toolbar = 0
> objBrowser.statusbar = 0
> objBrowser.AddressBar = 0
> objBrowser.Resizable = 0
> My code extract shows my definitions, but the vertical scrollbar is still
> visible.
> Any help would be appreciated
> thanks
> Markus