How to Pass bold text in JOPtionPane.showCofirmDialog(null,boldtext,....)
843806Dec 19 2007 — edited Dec 19 2007I have the code like..
Object message[] = new Object[2];
message[0]="The following Selections have been made:\r\n\r\n";
message[1]=paneScroll(...);
int load = JOptionPane.showConfirmDialog(dialog,message,
"Selections", JOptionPane.YES_NO_OPTION);
.....
if i need "The following Selections have been made:" text to be bold,..what is the code i need to change