Hello!
I have two-dimensional array with JTextFields, c[9][9], and I also have a LinkedList, la, that contains Strings. I want to use this code in order to set the text in the JTextFields:
c[0][0].setText(sa.getFirst());
When I run that code nothing happens, and I can't figure out why.
Hank