import java.awt.*; import java.awt.event.*; public class PopupFrame extends Frame implements ActionListener { Button ok; public PopupFrame(String title,String stuff) { super(title); setSize(200,100); ok = new Button("Close"); ok.addActionListener(this); TextArea ta = new TextArea(stuff); ta.setEditable(false); add(ta, BorderLayout.CENTER); add(ok, BorderLayout.SOUTH); show(); //repaint(); } public void actionPerformed(ActionEvent e) { setVisible(false); } }