and without to open a new window.
and icant understand what your code it suppsed to do?
ihave alreadycode that loads new window. iwant this code to work when the user clicks in a link that has target frame "_blank" or anything similar
if yoy go in a link and select from the menu open in new window it's working.
O/H Tom Peters έγραψε:
Should.
I tested this with the sample vb .net I posted for you awhile back:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
mb.Navigate2("http://www.vipercorp.com/test.htm")
End Sub
Private Sub mb_NewWindow2(ByVal sender As Object, ByVal e As AxMOZILLACONTROLLib.DWebBrowserEvents2_NewWindow2Event) Handles mb.NewWindow2
Dim test As New AxMOZILLACONTROLLib.AxMozillaBrowser
Dim a As New Form
test.Parent = a
test.Dock = DockStyle.Fill
a.Show()
e.ppDisp = test.Application
End Sub
"Πάρις Κουτσιούκης" <[EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>> wrote in message
news:[EMAIL PROTECTED]
hi im using the vb6 in order to make a web browser with mozilla
control.
iwant to know how ican make the links with target name like
"_blank" to open in new window.
iwrote code in newwindow2 event but nothing happens thanks.
-- _*Κυπαρίσσης (Πάρις) Κουτσιούκης*_
_*Φοιτητής Του Μαθηματικού*_
-- _*Κυπαρίσσης (Πάρις) Κουτσιούκης*_ _*Φοιτητής Του Μαθηματικού*_ _______________________________________________ mozilla-embedding mailing list [email protected] http://mail.mozilla.org/listinfo/mozilla-embedding
