Newbie Help: Status Bar

  • Thread starter Thread starter Seelan Rajagopal
  • Start date Start date
S

Seelan Rajagopal

hey Guys!
I just made a simpke web browser. I have a statusbar in the bottom.
I want it to display if it's done loading the page or if its still loading
it.
How do i do this?
Thanx
R.Seelan
 
Seelan Rajagopal said:
hey Guys!
I just made a simpke web browser. I have a statusbar in the
bottom. I want it to display if it's done loading the page or if its
still loading it.
How do i do this?


You can handle the web browser's StatusTextChange event:

Private Sub Browser_StatusTextChange( _
ByVal sender As System.Object, _
ByVal e As AxSHDocVw.DWebBrowserEvents2_StatusTextChangeEvent) _
Handles IEBrowser.StatusTextChange

Me.stbPanelText.Text = e.text
End Sub

You can also handle the other events like DownloadBegin, DownloadComplete
and so on.
 
Hey Armin,
Can u tell me where i can fnd information about other events....
Thanks
I would really like it if u can tell me a web site to learn all these things
Thanks
 
Seelan Rajagopal said:
Hey Armin,
Can u tell me where i can fnd information about other events....
Thanks
I would really like it if u can tell me a web site to learn all these
things
Thanks

Unfortunately I can't tell you more about these events. They are shown by
intellisense and in the object browser. When I wrote my own (very small)
browser, I just had a look at the name of the events to find out their
purpose and when they are raised.

You might find something in the MSDN library or the MSFT KB.

http://msdn.microsoft.com/library/
http://support.microsoft.com/default.aspx?id=fh;[ln];kbinfo
 
* "Seelan Rajagopal said:
Can u tell me where i can fnd information about other events....

I would really like it if u can tell me a web site to learn all these things

Welcome to the newsgroups. There is no general site you will find all
the information on except <http://msdn.microsoft.com>, but if you have a
question feel free to post it here _after_ having a look at the
documentation.

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>

Improve your quoting style:
<http://learn.to/quote>
<http://www.plig.net/nnq/nquote.html>
 
Can u tell me where i can fnd information about other events....
Thanks
I would really like it if u can tell me a web site to learn all these things
Thanks

Just as a side note, Whidbey has a WebBrowser control as part of the
System.Windows.Forms namespace. You can look at its properties and events
here:

http://longhorn.msdn.microsoft.com

But, you'll have to wait for Whidbey (2004) to begin using them.
 
Back
Top