got anyways to dynamically generate JComponent like JTextField, JCombobox? What i try is work.., but can only add-on once which’s declare as global variable. Got anyway likes changing variable Name during every runtime?
got anyways to dynamically generate JComponent like JTextField, JCombobox? What i try is work..,
Share
You can’t assign a uniques name to every component you dynamically generate.
As you define the text fields you need to add them to a List (or some other data structure). Then you can access the textfields individually from the List.