I have a JFrame with about 10 components (JLabel, Combobox, Buttons, TextFields). When I start the program, sometimes it doesn’t display all of them. I tried repaint in different place and problem still there
Any one help me
I have a JFrame with about 10 components (JLabel, Combobox, Buttons, TextFields). When I
Share
The general order of code for creating a GUI is:
That is all components should be added to the frame before the frame is made visible.