Is there any message box template which allows me to have "Yes to all"?
Debasis Jana
I re-read the JOptionPane API documentation for you and no, there isn't such
an option; there isn't a "No to all" option either. But nothing forbids you to build
your own dialog given the JDialog class ...
I re-read the JOptionPane API documentation for you and no, there isn't such
an option; there isn't a "No to all" option either. But nothing forbids you to build
your own dialog given the JDialog class ...
kind regards,
Jos
Actually I read but i didn't find that's why i came to this site.
And what i decided that i have to develop my own dialog box.
public class BonjourMonde {
public static void main(String[] args) {
Locale.setDefau lt(Locale.FRANC E);
JOptionPane.sho wConfirmDialog( null, "this is a test");
}
}[/CODE]
public class BonjourMonde {
public static void main(String[] args) {
Locale.setDefau lt(Locale.FRANC E);
JOptionPane.sho wConfirmDialog( null, "this is a test");
}
}[/CODE]
Just like I said: the 'standard' buttons are localized (and the title is) but nothing
else is.
Comment