Excel Userform WebBrowser stop Newwindow

Ryan0120

New Member
Joined
Dec 9, 2019
Messages
5
Office Version
  1. 2016
Platform
  1. Windows
Hi all,

I got an issue with Excel userform Microsoft webbrowser.

Purpose of my userform/macro:
- Searching cell value in Webbrowser to view info on specified websites.

VBA Code:
Webbrowser1.Navigate = "https://www.digikey.nl/products/en?keywords=" & textbox1.text

The problem is that:
- I can't follow a link which normally would open in a new tab. (If I copy the link manually and browse it with the webbrowser it works fine.)
- I'm unable to catch the link its trying to follow it only cathces the url its currently at.
- It tries to open an newwindow instead it should open in current window.

Link to try:

then navigate to Datasheet button.

What I tried:
Catching the URL at BeforeNavigate event
Code:
Link = Webbrowser1.locationURL
or WebBrowser1.URL.ToString (didnt get the right link)

Redirecting at WebBrowser1_NewWindow2
Code:
Cancel = true
WebBrowser1.Navigate (link)

Some pointers in the right direction would be more then welcome.
Most results I found on google are c# based.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Try this code in the userform's module:
VBA Code:
Private Sub WebBrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)
    
    Dim link As Object
    
    Set link = WebBrowser1.Document.ActiveElement
    If link.tagName = "A" Then
        WebBrowser1.Navigate link.href
    End If
    
    'Set Cancel flag to prevent new IE window opening
    Cancel = True

End Sub
 
Upvote 0
Solution
Try this code in the userform's module:
VBA Code:
Private Sub WebBrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)
   
    Dim link As Object
   
    Set link = WebBrowser1.Document.ActiveElement
    If link.tagName = "A" Then
        WebBrowser1.Navigate link.href
    End If
   
    'Set Cancel flag to prevent new IE window opening
    Cancel = True

End Sub
Works like a charm so far thanks alot!!!:) You made my day !
 
Upvote 0

Forum statistics

Threads
1,214,912
Messages
6,122,200
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top