// Using the About box. This will pop up the About box when the user clicks the About button. // The user makes the box go away by clicking DISMISS inside the About JDialog box. JButton about = new JButton( "About" ); about.setToolTipText( "About " + EXTENDEDTITLE ); about.addActionListener( new ActionListener() { /** * Method actionPerformed ... * * @param e of type ActionEvent */ public void actionPerformed( ActionEvent e ) { // open aboutbox frame new CMPAboutJBox( TITLE_STRING, VERSION_STRING, "Download or update compressed files from a website.", "", "freeware", RELEASE_DATE, 2003, "Roedy Green", "REPLICATOR" ); } } );