Diarmuid07
New Member
- Joined
- Apr 27, 2017
- Messages
- 1
Hi Guys
So i need some help
i tried to create a WebBroser Panel in a Userform
which when the userform is activated the web browser will open a specific webpage
the main issue here is when the Userform is activated
the webpage will open in the PC web Browser(IE/Chrome) instead opening in the webbrowser panel
is there anyway to lock the webpage so it will open in the panel
below is the source code im using
So i need some help
i tried to create a WebBroser Panel in a Userform
which when the userform is activated the web browser will open a specific webpage
the main issue here is when the Userform is activated
the webpage will open in the PC web Browser(IE/Chrome) instead opening in the webbrowser panel
is there anyway to lock the webpage so it will open in the panel
below is the source code im using
Code:
Private Sub UserForm_Activate()
urlLink = "Somewebsite"
WebBrowser1.Navigate url:=urlLink, TargetFrameName:=Frame8
End Sub