I have a serious problem that i need to solve today . I need to code a simple app that loads a file , read it's content create objects from these informations and add them to a linkedlist . Everything worked fine .But now i need to pass this list as an argument to a second form so i can put them in a combobox . I tryed this :
searchForm = new SearchForn();
searchForm.setListEtudiant(listEtudiantL1);
searchForm.setEnabled(true);
searchForm.setVisible(true);
searchForm.Show();
The form appears but it seems that i get nothing from the linkedlist . Thank you !