Re: Text formatting issue
Re: Text formatting issue
Between each two segments of letters/digits.
Re: Text formatting issue
i tried this with no success:
Code:
while (st.hasMoreTokens()) { model.addElement("|" + st.nextToken() + "\t" + "|" + st.nextToken() + "\t" + "|" + st.nextToken() + "\t" + "|" }
did I do something wrong?
Re: Text formatting issue
Are you sending the text to the console or is this in a textarea?
Re: Text formatting issue
im creating a model and then setting it to a jList, so I can see the items in a list box. I want them to look nice in the list box
Re: Text formatting issue
If you want it to look nice go for a JTable. It will align the items for you in a nice fashion.
Re: Text formatting issue
wow, I didnt even notice that there. i'll change it around, thanx