Link to home
Start Free TrialLog in
Avatar of hello1111
hello1111

asked on

About Box

I have a simple Jave Application.    What is the easiest way to have an "About" box open up when the program starts, where the user can see information about the programme, click on okay, and continue with the programme?

Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

The best thing to do is to have a splash screen it gives the user something to look at when the program is loading, but you don't want to annoy them by forcing them to dismiss it. There's an example at http://www.biztool.com/magazines/java/archives/0510/Andrews/ 
Avatar of allelopath
allelopath

Also, I would include an option to skip the splash screen on startup
Easiest would be to just popup a dialog:

JOPtionPane.showMessageDialog(null, "About XYZ");
ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

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
popup was my idea ;)
He could be accepting my earlier answer in effect (?)
Avatar of hello1111

ASKER

Sorry objects, I was accepting the splashscreen idea!
No worries, thanks for the clarification :)