Hi,
I have a frame with a combobox. the combox is editable. It should show [Select] in its text field when we open the frame but in the drop down, [Select] should not be shown as a drop down item.
Now I have implemented the combobos as:
combo.addItem("Select");
combo.addItem("A");
combo.addItem("B");
and so on...
But the Select is an item and will be shown in the drop down
Can anyone help me plz....