How to remove scrollbars from a web browser control using VB6?
Refer to the WebBrowser.DocumentComplete Event :
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, ByVal URL As Object) WebBrowser1.Document.body.Scroll = "no" End Sub
try it
WebBrowser1.Document.body.setattribute "scroll", "no"
Source
on the page you want to load, add this to the body tag: <body scroll='no'>
<body scroll='no'>
Source: https://habr.com/ru/post/1720462/More articles:Assembly.Load(Byte []) и Assembly.Location/Assembly.Codebase - .netHow to get ListViewItem under MouseCursor while dragging sth. above it - c #jQuery remove () on element does not hide used space - javascriptWhat are the options for using non-relational data warehouses? - pythonСохранение прослеживаемости в актуальном состоянии по мере развития проекта - maintenanceReduction of the GROUP BY clause - sqlGtkmm - "Gtk :: DrawingArea" in "Gtk :: ScrolledWindow"? - c ++Creating a collection of all classes that inherit from IBlahblah - reflectionHow to use libtidy with tidyParseBuffer ()? - cASP.Net ScriptManager globally configures ScriptMode in Machine.Config - debuggingAll Articles