Pls help me again. These are the steps I have done. Pls tell me what's wrong
1. I have added GeckoWebBrowser1 using Toolbox > Choose Item > .Net Framework >Click GeckoWebBrowser
2. Then Downloaded xulrunner-1.9.en-US.win32 and unzip
3. Then In Project Solution Explorer > Right Click My application > Properties > Click View Application Events
4. Then in VB.NET Coding Under General I have selected MyApplication Events. Under Declaration I have selected Startup
Pls tell me Next Steps
I have added code as follows mentioned in the Readme
Namespace My
' The following events are available for MyApplication:
'
' Startup: Raised when the application starts, before the startup form is created.
' Shutdown: Raised after all application forms are closed. This event is not raised if the application terminates abnormally.
' UnhandledException: Raised if the application encounters an unhandled exception.
' StartupNextInstance: Raised when launching a single-instance application and the application is already active.
' NetworkAvailabilityChanged: Raised when the network connection is connected or disconnected.
Partial Friend Class MyApplication
Private Sub MyApplication_Startup(ByVal sender As Object, ByVal e As Microsoft.VisualBasic.ApplicationServices.StartupEventArgs) Handles Me.Startup
'Skybound.Gecko.Xpcom.Initialize
Skybound.Gecko.Xpcom.Initialize("C:\Users\janaka\Downloads\xulrunner-1.9.en-US.win32\xulrunner")
End Sub
End Class
End Namespace
What are the wrong things I have done. Pls tell me How can I set code as follows
Form1.GeckoWebBrowser1.Navigate("www.google.com")
Pls JohnH help me