What is Combo box in java:
One of the Swing component is JComboxBox which has a drop-down list of choices for user that lets him to selects one of the item from the list.
It allows user to select an item from the list.The combo box can be read only or it can be editable.
The read only combo box is the one from where user can select only one value from the list (whether the desired value is not there or not).
The editable combo box is the one from where user can select only one value from the list if the desired value is not there then he can enter his own value.
For Combo box import package is, import javax.swing.JComboBox;
No comments:
Post a Comment