Subject Re: HELP JCOMBOBOX
Author tesanovic
--- In Firebird-Java@yahoogroups.com, "betoban2007" <betoban2007@...>
wrote:
>
> I need to fill the items of jcombobox with the data of a table (int to
> id_car, String to nombre_car). Somebody can collaborate to me?
> thanks.
>


Hi!

JComboBox items are objects. Create object ComboItem:

class ComboItem
{
int id_car;
String nombre_car;

public String toString()
{
return nobre_car;
}
}

Fill your datapair in ComboItem and add that object to JComboBox.

Bye