Help with java GUI- has error in main thread
- by jan
Hello guys,
Basically im trying to do a Insurance Application form in java. And it uses multiple JPanels in a JFrame.
-adding of JPanel into main program frame was done like this:
//jpCenterArea to hold jp1-jp7
jpCenterArea.add(jp1);
jpCenterArea.add(jp2);
jpCenterArea.add(jp3);
jpCenterArea.add(jp4); ...etc
********Add Jpanels to JFrame*****/…