vb6 - Remove scroll bars from Web Browser control -
How can I remove the scrollbar from web browser control using VB6?
handle the event:
the private sub WebBrowser1_DocumentComplete (the form of the object ByVal pDisp, ByVal URL as an object) WebBrowser1.Document.body .Scroll = "No" End Sub
Comments
Post a Comment