R reidarT Oct 26, 2005 #1 I use a webbrowser control to open a web page. I get a vertical scrollbar. Is it possible to get rid of it? reidarT
I use a webbrowser control to open a web page. I get a vertical scrollbar. Is it possible to get rid of it? reidarT
C Cor Ligthert [MVP] Oct 27, 2005 #2 Reidar, The vertical scrollbar is a part of the webpage that you are reading not a part of your webbrowser. Cor
Reidar, The vertical scrollbar is a part of the webpage that you are reading not a part of your webbrowser. Cor
H Herfried K. Wagner [MVP] Oct 27, 2005 #3 reidarT said: I use a webbrowser control to open a web page. I get a vertical scrollbar. Is it possible to get rid of it? Click to expand... You can remove both scrollbars by adding 'Me.WebBrowser1.Document.body.scroll = "no"' to the WebBrowser's 'DocumentComplete' event handler.
reidarT said: I use a webbrowser control to open a web page. I get a vertical scrollbar. Is it possible to get rid of it? Click to expand... You can remove both scrollbars by adding 'Me.WebBrowser1.Document.body.scroll = "no"' to the WebBrowser's 'DocumentComplete' event handler.