Hi all,

I'm attempting to add a String to a listbox object on my GUI but for some reason the "\t" character will not appear in the list. So for example the following code -

Code:
String a = "HELLO" + "\t" + "\t";
String b = a + "WORLD";
LstDisplay.add(b);
will produce an output like -

HELLOWORLD

on the listbox. Has anyone run into this before? Is there a way around this?

Thanks