PDA

Click to See Complete Forum and Search --> : Images in Webbrowser Control


bombfunk
Sep 25th, 2000, 10:51 AM
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.

Sep 25th, 2000, 02:10 PM
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:

Private Sub Webbrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)
Cancel = True
End Sub