|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How to check for scroll bars in web browser object?I'm using the web browser object: SHDocVw.dll. I do this in form Load()
Me.AxWebBrowser1.Navigate("http://www.abc.com/") Sometimes when a website loads, it causes horizontal or vertical scroll bars in the web browser window. How can I detect these? I'm assuming they will be completely run time since they do not appear until after the webpage loads. Thanks, Brett "Brett" <no@spam.com> schrieb: The scrollbars are part of the document which is shown inside the control. > I'm using the web browser object: SHDocVw.dll. I do this in form Load() > > Me.AxWebBrowser1.Navigate("http://www.abc.com/") > > Sometimes when a website loads, it causes horizontal or vertical scroll > bars in the web browser window. How can I detect these? I'm assuming > they will be completely run time since they do not appear until after the > webpage loads. You can remove them in the 'DocumentComplete' event using 'Me.WebBrowser1.Document.body.scroll = "no"'. -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/>
Show quote
Hide quote
"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message The above line gives a run-time error because intellisense doesn't show news:ezTL8DVOFHA.2348@tk2msftngp13.phx.gbl... > "Brett" <no@spam.com> schrieb: >> I'm using the web browser object: SHDocVw.dll. I do this in form Load() >> >> Me.AxWebBrowser1.Navigate("http://www.abc.com/") >> >> Sometimes when a website loads, it causes horizontal or vertical scroll >> bars in the web browser window. How can I detect these? I'm assuming >> they will be completely run time since they do not appear until after the >> webpage loads. > > The scrollbars are part of the document which is shown inside the control. > You can remove them in the 'DocumentComplete' event using > 'Me.WebBrowser1.Document.body.scroll = "no"'. > anything after document. I'm trying to set a certain width and detect if the webpage has gone past that width. I can set my form to say 800 width. If the webpage is wider, it will scroll out of viewing area tothe right, as the web browser object seems to grow dynamically. It will grow past the form width depending on the web page. How can I check for that? Thanks, Brett
VB.NET VERY Slow
Make installer make app start up on login SQL connection Option Strict ON and Dictionary obect two console apps. detect clicked column in datagrid Why "Application has generated an exception" error and not a good error message? With different credentials. Forms.captionbutton CreationTime and Windows File CreationTime why different? |
|||||||||||||||||||||||