Displaying bold text in a message dialog

Let's say I have the following code:abo.showMessageDialog(thisFrame, "Wrong Password!");For example, if I wanted to have the "Wrong" part of the message to be displayed as bold, how would I do it? Thanks in advance.
[269 byte] By [nayon_7a] at [2007-11-27 7:02:38]
# 1
HTML should work here."<html><b>Wrong Password!</b></html>"
robtafta at 2007-7-12 18:53:42 > top of Java-index,Java Essentials,Java Programming...
# 2
you can use HTML tags to do that.I dont remember exactly how to do.It is something like this I guess.abo.showMessageDialog(thisFrame, "<HTML><b>Wrong</b> Password! </HTML>");
achyuthba at 2007-7-12 18:53:42 > top of Java-index,Java Essentials,Java Programming...
# 3
It really did, thanks :D
nayon_7a at 2007-7-12 18:53:42 > top of Java-index,Java Essentials,Java Programming...