I have a dialog created with this code:
JOptionPane.showMessageDialog(null,
"About my application",
"About",
JOptionPane.INFORMATION_MESSAGE,
aboutIcon);
Is there a way to change the text or size of the OK button that is displayed by default? I couldn't find anything in the API or by searching the forum.