View Single Post
  #3 (permalink)  
Old 12-10-2007, 10:02 AM
staykovmarin staykovmarin is offline
Senior Member
 
Join Date: Nov 2007
Location: Newport, WA
Posts: 141
staykovmarin is on a distinguished road
Or even easier, you can call a small dialog to appear using JOptionPane:
How to Make Dialogs (The Java™ Tutorials > Creating a GUI with JFC/Swing > Using Swing Components)

Code:
JOptionPane.showMessageDialog(prentFrame, "TextMsg");
There are also options for adding more buttons and such.

Last edited by staykovmarin : 12-10-2007 at 10:05 AM.
Reply With Quote