CodePudding user response:
The simplestSendKeys "{pageup}
"SendKeys "{pagedown}"
CodePudding user response:
Webbrowser1. Document. Window. ScrollTo (320, 1520)CodePudding user response:
Private Sub Form_Load ()WebBrowser1. Navigate "http://www.163.com/"
End Sub
Private Sub Command1_Click ()
MsgBox WebBrowser1. Document. Body. Scrollwidth
MsgBox WebBrowser1. Document. Body. Scrollheight
'move to the middle of the window
WebBrowser1. Document. ParentWindow. Scroll WebBrowser1. Document. Body. Scrollwidth/2, WebBrowser1. Document. Body. Scrollheight/2
End Sub