Help JCombobox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jeffbroodwar
    New Member
    • Oct 2006
    • 118

    #1

    Help JCombobox

    Hi,

    I tried to use JCombobox (i'm using netbeans 5.5)

    how can i use this jComboBox1? how can i load elements? I tried this code but i'm receiving errors....

    jComboBox1.setM odel("Bird","Do g","Cat","Fish" );

    Regards,
    Jeff
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by jeffbroodwar
    Hi,

    I tried to use JCombobox (i'm using netbeans 5.5)

    how can i use this jComboBox1? how can i load elements? I tried this code but i'm receiving errors....

    jComboBox1.setM odel("Bird","Do g","Cat","Fish" );

    Regards,
    Jeff
    The sun tutorial has dedicated a whole section on how to use the combobox.

    Comment

    • jeffbroodwar
      New Member
      • Oct 2006
      • 118

      #3
      Thanx i got it now..... just use the .addItem method....

      jComboBox1.addI tem("ISDA");

      adds isda in the combo box

      Comment

      Working...