Skip to content

Planet-Source-Code/karl-j-sak-disable-ie-popup-windows__1-5738

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Disable IE Popup Windows

Description

Disables IE popup windows by using an VB Front-end browser and redirecting the popup window to a second invisible webbrowser control.

More Info

Submitted On
By Karl J. Sak
Level Beginner
User Rating 4.0 (16 globes from 4 users)
Compatibility VB 5.0, VB 6.0
Category Internet/ HTML
World Visual Basic
Archive File

Source Code

Private Sub Form_Load()
' navigate to a website, I suggest www.aol.com
WebBrowser1.Navigate "http://www.aol.com"
End sub
Private Sub WebBrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)
'this sets the popup window to another browser control
'in which webbrowser2.visible = false
Set ppDisp = WebBrowser2.Object
End Sub

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published