Hey C.C !!
I have a small request for help !
I was wondering is it possible to change the title of a JOptionPane? Instead of getting boring "Message" Title, I know how to change icons but the title has been nagging on me for a while and now I need help. So please help out!
Thanks in advance ;)
Help with swing !
Started by Turk4n, Sep 17 2008 08:23 AM
7 replies to this topic
#1
Posted 17 September 2008 - 08:23 AM
|
|
|
#2
Posted 17 September 2008 - 09:12 AM
giving it 2 strings should work:
JOptionPane.showMessageDialog(frame,
"text",
"title",);
JOptionPane.showMessageDialog(frame,
"text",
"title",);
#3
Posted 17 September 2008 - 09:22 AM
acwclassic said:
giving it 2 strings should work:
JOptionPane.showMessageDialog(frame,
"text",
"title",);
JOptionPane.showMessageDialog(frame,
"text",
"title",);
Thank you :)
#4
Posted 17 September 2008 - 02:53 PM
acwclassic said:
giving it 2 strings should work:
JOptionPane.showMessageDialog(frame,
"text",
"title",);
JOptionPane.showMessageDialog(frame,
"text",
"title",);
In the future, please use code tags:
JOptionPane.showMessageDialog(frame, "text", "title",);
#5
Posted 21 September 2008 - 08:56 PM
That Good Suggetion for JoptionPane.
#6
Posted 26 September 2008 - 07:56 AM
leska said:
Please, read JavaDoc before!
Why would I do that? I don't want to do nor learn about doclets...
#7
Posted 26 September 2008 - 10:16 AM
No its not, JavaDoc is a tool for creating documentation for your program using comments from the source code
#8
Posted 26 September 2008 - 01:53 PM


Sign In
Create Account


Back to top









