1) I've noticed that when i make a web browser it loads alot slower than Firefox and IE7, how do i make my browser faster?
2) How do i make a command button that links to the internet options for MS Windows?
3) I have a text box that i use to enter an url. but how do you make it display a current page?
Thanks, all help appreaceted.
I have found an
exelent site that runs you through how to make a web browser that i want to share
http://www.developer.com/net/vb/arti...0926_1539931_1
It covers most things, including adding a status bar, which has always confused me as a begginer to visual basic.
---------------------------------
STATUS BAR
---------------------------------
If you fancy adding a Progress Bar to indicate how fast your Web page commands are moving along, you're in luck the WebBrowser control has an event designed specially for this purpose.
To use, you first need to add a Progress Bar to your application. This control ships with Visual Basic and can be added to your project by clicking 'Projects', 'Components' and selecting 'Microsoft Windows Common Controls 6.0'.
Here's a piece of sample code that uses the WebBrowser ProgressChange event to alter a simple Progress Bar:
Private Sub WebBrowser1_ProgressChange(ByVal _
Progress As Long, ByVal ProgressMax As Long)
On Error Resume Next
ProgressBar1.Max = ProgressMax
ProgressBar1.Value = Progress
ProgressBar1.Refresh
End Sub
After inserting this code, try visiting a Web site or clicking a link then monitor the progress visually.