I have following data (String):
Course1: A1
Course1: A2
Course2: B1
Course2: B2
Course2: B3
Course2: B4
Course3: C1
Course3: C2
I would like to make 2 JComboBox (JComboBox1, JComboBox2)
JComboBox1 is Containing Course1,Course2,Course3.
When I select, say, Course2 from JComboBox1 =>B1,B2,B3,B4 should be displayed in JComboBox2.
Is it possible to implement this.
Many Thanks.