Thanks, that's exactly what I was looking for. By the way, is there good reference guide on WebBrowser control?
Printable View
Thanks, that's exactly what I was looking for. By the way, is there good reference guide on WebBrowser control?
Sorry, this really goes for my previous post.
In VB, click Project > References... and make sure Microsoft Internet Controls is checked and then click OK. And here's a little code to get you started:
If you have VB5 or VB6, than you can just type "ie." and a list of stuff will come up and you should know what to do.Code:Dim ie As New InternetExplorer
ie.Visible = True
ie.Navigate "http://www.vb-world.net"
Hope that helps.