Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help IE2.Navigate ppDisp, , "right"

Status
Not open for further replies.

Abzim

Programmer
Feb 15, 2016
6
0
0
DZ
Hello all

Private Sub IE1_NewWindow2(ppDisp As Object, Cancel As Boolean)
Dim TextePage, sLink As String
Set ppDisp = IE2.object
IE2.Navigate App.Path & "\ff.htm"
Visible = True
End Sub


This is the code VB6 of a new windows from a clicked link in webbrowser IE1,

My question is :

how to controle the link in the new IE2 and put the page url in a frameset page html like this

IE2.Navigate ppDisp, , "right"

thank you
 
Problem is that NewWindow2 does not provide the info you need to do this, and NewWindow3 - which does - isn't useable by VB6 because of an unsupported type.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top