Here is how to do it with the WebBrowser control embedded on yor form in VB.Net 2005:
Public Class Form1
Private firstPage As Boolean = True
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
firstPage = True
WebBrowser1.Navigate("www.
End Sub
Private Sub WebBrowser1_DocumentComple
If firstPage Then
firstPage = False
WebBrowser1.Document.All.I
WebBrowser1.Document.All.I
End If
End Sub
End Class
Main Topics
Browse All Topics





by: Idle_MindPosted on 2007-03-29 at 08:52:57ID: 18817276
Here is one where I spawn an instance of Internet Explorer: e.com/Prog ramming/La nguages/.N ET/ Visual_ Basic.NET/ Q_21779070 .html
http://www.experts-exchang