How can I remove the scrollbars from a web browser control using VB6?
+3
A:
Handle the WebBrowser.DocumentComplete event:
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, ByVal URL As Object)
WebBrowser1.Document.body.Scroll = "no"
End Sub
C-Pound Guru
2009-10-19 14:11:06