JOptionPane

Is there anyway to put the contents of the JOptionPane into multiple lines in the java code for I have to scroll horizontally at the minute to reach the end of the contents for I have alot of information on the JOptionPane
[236 byte] By [davyboy1979] at [2007-9-26 1:49:02]
# 1

JOptionPane.showMessageDialog(null,

"This is for help in your code.",

"This is where you'll put all your " +

"text to be displayed, I'm presuming" +

" it's in your java code it's too long." +

" Using plus allows you to keep it short.",

JOptionPane.ERROR_OPTION);

javajono at 2007-6-29 2:53:25 > top of Java-index,Archived Forums,Java Programming...
# 2
Thanks very much that worked a treatDave
davyboy1979 at 2007-6-29 2:53:25 > top of Java-index,Archived Forums,Java Programming...