L
ljlevend2
I am having problems interacting with flash objects (i.e., Adobe Flash Player
9) in web pages when using a System.Windows.Forms.WebBrowser control. The
flash objects always seem to display correctly, but when I click on a link
within the flash object the WebBrowser often fails to navigate to the new
page. If I use IE6 (from outside by app) or an AxSHDocVw.AxWebBrowser
control (within my app) then everything works as expected.
You can try this out by creating an app with the following code:
Public Class Form1
Public Sub New()
InitializeComponent()
Me.Size = New Drawing.Size(600, 600)
Dim wb As New System.Windows.Forms.WebBrowser
wb.Dock = DockStyle.Fill
wb.Url = New System.Uri("http://www.falcon-nw.com/")
Me.Controls.Add(wb)
End Sub
End Class
On the web site that opens I can normally navigate to one of the links
(e.g., “WHAT’S NEWâ€). After that the page usually won’t navigate to any of
the other links.
I'm using Visual Basic 2005, .NET Framework 2.0, WinXP SP2.
Thanks for any help!
Lance
9) in web pages when using a System.Windows.Forms.WebBrowser control. The
flash objects always seem to display correctly, but when I click on a link
within the flash object the WebBrowser often fails to navigate to the new
page. If I use IE6 (from outside by app) or an AxSHDocVw.AxWebBrowser
control (within my app) then everything works as expected.
You can try this out by creating an app with the following code:
Public Class Form1
Public Sub New()
InitializeComponent()
Me.Size = New Drawing.Size(600, 600)
Dim wb As New System.Windows.Forms.WebBrowser
wb.Dock = DockStyle.Fill
wb.Url = New System.Uri("http://www.falcon-nw.com/")
Me.Controls.Add(wb)
End Sub
End Class
On the web site that opens I can normally navigate to one of the links
(e.g., “WHAT’S NEWâ€). After that the page usually won’t navigate to any of
the other links.
I'm using Visual Basic 2005, .NET Framework 2.0, WinXP SP2.
Thanks for any help!
Lance