也就是用当我查询得到的结果有多页时,
怎么样才能够用webbrowse自动打开下一页
也就是自动翻页用ihttp控件我知道可以实现
但这里需要的是webbrowse控件

解决方案 »

  1.   

    其实也就是用webbrowse POST数据
      

  2.   

    SendMessage(WebBrowser1.Handle, WM_VSCROLL, SB_PAGEDOWN, 0);SB_BOTTOM Scrolls to the lower right.
    SB_ENDSCROLL Ends scroll.
    SB_LINEDOWN Scrolls one line down.
    SB_LINEUP Scrolls one line up.
    SB_PAGEDOWN Scrolls one page down.
    SB_PAGEUP Scrolls one page up.
    SB_THUMBPOSITION Scrolls to the absolute position. The current position is specified by the nPos parameter.
    SB_THUMBTRACK Drags scroll box to the specified position. The current position is specified by the nPos parameter.
    SB_TOP Scrolls to the upper left