WebBrowser control scrolling

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • iwdu15

    #1

    WebBrowser control scrolling

    hi, is there any way to scroll the web browser to the bottom of the document?
    thanks
    --
    -iwdu15
  • Aristotelis Pitaridis

    #2
    Re: WebBrowser control scrolling

    I had the same problem but I did not find a way to do it.

    Aristotelis

    Ï "iwdu15" <jmmgoalsteraty ahoodotcomÝãñáø å óôï ìÞíõìá
    news:DE0BF0E4-DDCB-4B1F-89C9-5BB1FC300C8D@mi crosoft.com...
    >
    hi, is there any way to scroll the web browser to the bottom of the
    document?
    thanks
    --
    -iwdu15

    Comment

    • nime

      #3
      Re: WebBrowser control scrolling

      DOM methos is scrollBy, however VB.NET doesn't support.
      Try WebBrowser1.Doc ument.Window.sc rollBy(0,50)

      I think it scrolls main frame...


      "Aristoteli s Pitaridis" <pitaridis@hotm ail.comwrote in message news:1153330561 .314702@athnrd0 2...
      >I had the same problem but I did not find a way to do it.
      >
      Aristotelis
      >
      Ï "iwdu15" <jmmgoalsteraty ahoodotcomÝãñáø å óôï ìÞíõìá news:DE0BF0E4-DDCB-4B1F-89C9-5BB1FC300C8D@mi crosoft.com...
      >>
      >hi, is there any way to scroll the web browser to the bottom of the document?
      >thanks
      >--
      >-iwdu15
      >
      >

      Comment

      • nime

        #4
        Re: WebBrowser control scrolling

        Try WebBrowser1.Doc ument.Window.sc rollBy(0,50)
        Ops: Should be .ScrollTo




        Comment

        Working...