
Remove ScrollBars from WebBrowser control
If the design of the HTML page is within your control, try
<style type="text/css">
body {overflow:visible}
</style>
Barry Evans
Canberra, Australia
--
Is there any way to remove the WebBrowser control's right hand scroll bar?
The initial window of my app is really a borderless form with a WebBrowser
control displaying a web page that makes up the initial window. But the
display of the scroll bar --even though no portion of the page being
displayed is scrollable-- distracts from the interface. Is there a way to
remove the scroll bar? Perhaps via some API trick?
Thanks!
BB