Link to home
Start Free TrialLog in
Avatar of mrpatel
mrpatel

asked on

Status bar in java application

Hi all,
  How do I make a status bar on the bottom of my application window in JAVA? ( One like on the bottom of the Internet Explorer )


Thanks,
-mrpatel
Avatar of mehtas
mehtas

You can use the following code:

StatusBar sBar = new StatusBar();

And based on your frame/panel, and the direction you would want to place your status bar (I guess SOUTH), you can use,

this.add(sBar, BorderLayout.SOUTH);

hope this helps..

sdm
or if u are doing applets, u can use showStatus methods..

http://java.sun.com/j2se/1.3/docs/api/java/applet/Applet.html#showStatus(java.lang.String)

vemul
ASKER CERTIFIED SOLUTION
Avatar of yongsing
yongsing

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
mrpatel:
This old question needs to be finalized -- accept an answer, split points, or get a refund.  For information on your options, please click here-> http:/help/closing.jsp#1 
EXPERTS:
Post your closing recommendations!  No comment means you don't care.
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:
SPLIT points between mehtas and vermul

Please leave any comments here within the next seven days.

PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!

Thomas Boshell
EE Cleanup Volunteer
mehtas suggested using StatusBar class. Is there such a class?

vemul suggested using showStatus method. Only Applet has this method, but the questioner seems to be referring to stand-alone applications. Is there such a method in Frame, JFrame, Dialog or JDialog?

If the answers to the above two questions are no, then why accept their answers?