Saved Bookmarks
| 1. |
What is the difference between jComboBox and jListBox. Give one method of each of them? |
|
Answer» jComboBox is like a drop down box - you can click a drop-down arrow and select an option from a list whereas jList provides a scrollable set of items from which one or more may be selected. getSelectedItem() for combobox getSelectedValue() for list |
|