package dialogboxes;
import javax.swing.JOptionPane;
import javax.swing.JFrame;
/** * * @author Hira */publicclass Dialogboxes {
/** * @param args the command line arguments */publicstaticvoid main(String[] args) {
// JOptionPane.showMessageDialog(null,// "Eggs are not supposed to be green.");// }
Object[] options = {"Yes, please",
"No, thanks",
"Never!,","Later! "};
int n=JOptionPane.showOptionDialog(null,
"Would you like system to remember password? ",
"Remember Password?",
JOptionPane.YES_NO_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
options,
options[2]);
}
}