Jump to content

Web Browser

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
4 replies to this topic

#1
Tsukuyomi15

Tsukuyomi15

    Newbie

  • Members
  • PipPip
  • 12 posts
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?

#2
Brandon W

Brandon W

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,828 posts
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 :

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!


#3
Xav

Xav

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 13,118 posts
Also, you are not creating a web browser. You are creating a wrapper for Internet Explorer.
Jordan said:

Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums

#4
Brandon W

Brandon W

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,828 posts
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
Xav

Xav

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 13,118 posts
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.
Jordan said:

Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums