Welcome to JavaRanch
Thank you for finding the code button.
I think what you are doing is writing Panelet which is the name of the class, rather than panel which is the identifier for the instance.
But you are setting up the Panelet object in the main method, so it is out of scope when you reach the Main class.
Not certain about the rest of it, but . . .
I suspect you need to move all the code to set up the GUI into the Main class (probably the constructor), and move the code to start the
Thread into the main method.
If the JComboBox has private access in the Panelet class,
you should provide getter methods which provide access to the selected item in the JComboBox.
Rather than struggling with NetBeans (although it is correct to insist on private access to a field) you should consider a decent text editor (if on Windows try jEdit. NotePad2 or NotePad++, not NotePad) and using the command line.