Hello!
I need a way to use a Progressbar to show the status of a web page loading in a web browser,
Heres what the code for the project is:
Button1:
- WebBrowser1.Navigate(TextBox1.Text)
TextBox1:
- TextBox1.Text = WebBrowser1.URL.ToString()
That works, but I have not even a "slight" idea how to do it...
Thanks :)

ProgressBars are typically only useful when you are looping through a process and you know where in the process you are. For example, if your loop is copying a known number of files then at each step through the loop you can set the ProgressBar to reflext what percentage of the files you have completed copying. For a single statement process such as navigating to a web page there is no loop involved so a ProgressBar will not be useful.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.