|
-
Sep 6th, 2000, 05:22 PM
#1
Thread Starter
Member
Thanks, that's exactly what I was looking for. By the way, is there good reference guide on WebBrowser control?
-
Sep 6th, 2000, 05:24 PM
#2
Thread Starter
Member
Sorry, this really goes for my previous post.
-
Sep 6th, 2000, 06:38 PM
#3
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:
Code:
Dim ie As New InternetExplorer
ie.Visible = True
ie.Navigate "http://www.vb-world.net"
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.
Hope that helps.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|