Hello. I am creating a Web browser in Visual Basic.NET and I want to add a status strip (like in IE and Firefox) and I want to add in a media player but I don't know how to. Also, I am trying to add a feature when you click a button and the Browser is minimized to the System Tray. Could someone please help me?
Web Browser
Started by Tsukuyomi15, Dec 07 2008 05:18 PM
4 replies to this topic
#1
Posted 07 December 2008 - 05:18 PM
|
|
|
#2
Posted 07 December 2008 - 06:24 PM
I did a search on Google and I found this;
Quote
Answer
Hello Sir
so u r making web browser and u want to fill progress bar like IE ok...
If U r using WebBrowser Control then use ProgressChanged Event as follow :
Hello Sir
so u r making web browser and u want to fill progress bar like IE ok...
If U r using WebBrowser Control then use ProgressChanged Event as follow :
Private Sub WebBrowser1_ProgressChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) Handles WebBrowser1.ProgressChanged
ProgressBar.Max = e.MaximumProgress
ProgressBar.Value = e.CurrentProgress
End Sub
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation
Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!
#4
Posted 08 December 2008 - 01:29 PM
Yer basically Xav is right... You see many people saying they are creating one but it is basically a copy of IE.
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation
Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!
#5
Posted 09 December 2008 - 10:26 AM
It can perhaps be considered as an "interface" that controls Internet Explorer.
If you want a real challenge, write a program that parses HTML and renders it. You'll probably end up with a better rendering engine than IE's.
If you want a real challenge, write a program that parses HTML and renders it. You'll probably end up with a better rendering engine than IE's.


Sign In
Create Account


Back to top









