Example
String testString = "Testing \t tabs";
JOptionPane.sho wMessageDialog( null, testString, "TEST",
JOptionPane.INF ORMATION_MESSAG E);
Instead of getting the output "Testing tabs", I get something more like
"Testing | tabs" (although it isn't a pipe symbol, it's something unusual).
What do you need to do to get tabs to work with JOptionPane windows?
String testString = "Testing \t tabs";
JOptionPane.sho wMessageDialog( null, testString, "TEST",
JOptionPane.INF ORMATION_MESSAG E);
Instead of getting the output "Testing tabs", I get something more like
"Testing | tabs" (although it isn't a pipe symbol, it's something unusual).
What do you need to do to get tabs to work with JOptionPane windows?
Comment