Is it possible to disable the load of images in a Webbrowser control?
And is it possible to disable the popup screens that some site's have in a Webbrowser control?
Thanks in advance.
Printable View
Is it possible to disable the load of images in a Webbrowser control?
And is it possible to disable the popup screens that some site's have in a Webbrowser control?
Thanks in advance.
You cannot disable the load of images, you'd have to simply use Webbrowser1.Stop after a few seconds to stop the page from completely loading.
And to disable popups:
Code:Private Sub Webbrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)
Cancel = True
End Sub