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 -
will produce an output like -Code:String a = "HELLO" + "\t" + "\t"; String b = a + "WORLD"; LstDisplay.add(b);
HELLOWORLD
on the listbox. Has anyone run into this before? Is there a way around this?
Thanks


Reply With Quote