JComboBox problem
hi,
i have encountered a strange problem. i have a list of objects which are being saved to a file. the process goes very smooth indeed and NO problems occur.
Even when retrieving the objects back to the application, there are no problems.
Yet, when I am trying to put such data in the JComboBox, such data does not appear.
The code being used is:
appJava.openFromFile(fileName);
jcbRecords =new JComboBox(ObjectClass.getList().toArray());
The first line of code indicates the file name to be retrieved, whereas the second code
Please be informed that during a debbuging exercise, it was noted that the objects are being retrieved. Such was seen using the method --
System.out.println("ObjectClass.getList()");
Therefore, some has to do with the combobox...
Thanks.

