A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

Does anyone here know a good code for a Webbrowser with a progress bar

960 views · started by Izzy ·
#1
Does anyone here know a good code for a Webbrowser with a progress bar
like with fire fox the progress bar fills up when you go to a page does anyone here know a working code?

For Visual Basic 2008
#2
Izzy wrote:
like with fire fox the progress bar fills up when you go to a page does anyone here know a working code?

For Visual Basic 2008

I will try and get it up here in a minute... (Need to add progress bar)

EDIT:

You should try to make your own, its not hard at all...

http://www.youtube.com/watch?v=LiQJTBQDxXI
http://www.youtube.com/watch?v=51gel3qTkPo&feature=related
http://www.youtube.com/watch?v=zbeUtEEaoN0&feature=related
http://www.youtube.com/watch?v=PpejtAgDEIQ&feature=related
#3
Take the number of bytes downloaded thus far and divide by the number of bytes sent by the header that tells how many bytes are in the document ("Content-Length").
#4
GAMEchief wrote:
Take the number of bytes downloaded thus far and divide by the number of bytes sent by the header that tells how many bytes are in the document ("Content-Length").


Yeah this is the best method from my knowledge.