hurm..im not familiar with the shell thingy, i found one on china server..the VB code is
CODE
Public Class Form1
Private Sub WebBrowser1_NewWindow(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles WebBrowser1.NewWindow
Dim NewURL As String = CType(sender, WebBrowser).StatusText
Dim frmNew As New Form1
frmNew.WebBrowser1.Navigate(NewURL)
'或者是frmNew.WebBrowser1.Url = New Uri(NewURL)
frmNew.Show()
e.Cancel = True
End Sub
End Class
my coding on the current browser is in html like below where it navigates to new window whereby in VB application i already declare the function like code above. So, whenever I click on the html code for new VB window, I manage to open a new window in same VB application.
CODE
<a href="http://www.hyperlinkcode.com/new-window.php" target="_blank">New Browser Window</a>
Now i found the solution already, but do you know how to resize my new VB window to smaller size? I assume we have to edit some at the first VB code that I show.