How to present a simple alert message in java?
Coming from .NET i am so used calling Alert() in desktop apps. However in this java desktop app, I just want to alert a message saying "thank you for using java" I have to go through this much suffering: (using a JOptionPane) Is there an easier way? I'll be the first to admit Java can be very verbose, but I don't think this is unreasonable: JOptionPane.showMessageDialog(null, "My Goodness, this is so concise"); If you statically import JOptionPane.showMessageDialog this further reduces to showMessageDialog(null, "This is even shorter"); Bill the Lizard Assuming you already have a JFrame to