Results 1 to 2 of 2

Thread: Images in Webbrowser Control

  1. #1

    Thread Starter
    New Member
    Join Date
    Sep 2000
    Posts
    11
    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.

  2. #2
    Guest
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width