Insert values into java.awt.choice

Hi,

I am having a java.awt.choice component on an applet. The requirement is to allow the user to enter values in the choice drop down box. I am not able to see any methods like setEditable() or setEditor() for the choice component. How to proceed with this?

Any help regarding this will be very helpfull for me.

Thanks in Advance,

Saran

[368 byte] By [saran_ena] at [2007-11-26 16:50:16]
# 1
You have a few options:1) use Swing instead of AWT =)2) write your own lightweight implementation of a Choice3) provide a separate TextField for users to enter new values and add those values to the Choice programmatically.Good luck
Jasprea at 2007-7-8 23:17:53 > top of Java-index,Desktop,Core GUI APIs...