Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

display message while upload is in progress

Status
Not open for further replies.

sjavasjava

Programmer
Aug 26, 2002
2
IN
Hi ,

I need help for solving the following problem :

I have an applet which communicates with the Servlet to upload files . While the upload is in progress , i would

like to display a message / image (upload in progress...) . How can i do this ???

Pls Help..

thanks..
 

If you just want a message to pop up saying "whatever ..." then use a JOptionPane - like :

JOptionPane.showMessageDialog(null, "Loading ...", "User Information", JOptionPane.WARNING_MESSAGE);

or if you want to have something a bit more fancy, then look into the JProgressBar class (there is a tutorial on the java.com site) - but it's not the easist of classes to get to grips with !!

Ben
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top