Question:
what is the code for status bar in visual basic 6?
lalu
2008-10-04 08:59:02 UTC
im actually doing a web browser and i dont know what to do with the status bar
Three answers:
Aaron
2008-10-06 09:49:09 UTC
First insert a status strip in your project. You will find it in the toolbox in the "menus and toolbars" tab.



Then insert a status label. by clicking on the icon that appears when you put the mouse pointer on the status bar.



Insert a progress bar the same way as the status label.



You can change the text of the Status label the same way as a normal label.



For example. When the user presses the go button the text changes to Loading "The Url". and when i'ts done with loading it changes to Done.

You can put more thing. For example when it could not load the page you can put. Page could not be loaded.



The progress bar:



Private Sub WebBrowser1_ProgressChanged(ByVal sender As Object, _

ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) _

Handles WebBrowser1.ProgressChanged



ToolStripProgressBar1.Maximum = e.MaximumProgress

ToolStripProgressBar1.Value = e.CurrentProgress

End Sub



Past this code in your program's. Here the name of the webbrowser is WebBrowser1 and the name of the progressbar is ToolStripProgressBar1. These are the defualt names for the first object.



Visit my website, there you will find interesting thing's for VB. (I use VB 2008 Express ) Like very useful custom control's, Subs, Functions, Classes (The SFC file), tutorial's, video's and downloads.



If you want more help you can Email me: aaron.dewindt@gmail.com



http://www.freewebs.com/aarondewindt/index.htm
noahssite
2008-10-04 09:02:56 UTC
First of all if you cannot figure this out you cannot make a web browser. If you would like to make a web browser from scratch you need to re-create the php engines the html engines etc...



If you are just using a Web Browser control then check out this website.



http://www.vbforums.com
2016-10-15 14:27:21 UTC
Log-in identity i'm assuming you're meaning, that's no longer precisely sparkling what you're asking. yet whilst that's on the load journey on your application have it set off and shipment a communication to on the spot the person for their log-in and password, this could return those values on your substantial application for verification. you will ought to code those your self. which contains the look up in despite database of password reference device you define your self.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...