0% found this document useful (0 votes)
3 views

ComboBox Example

Uploaded by

Suraj Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

ComboBox Example

Uploaded by

Suraj Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Example of ComboBox

********************Source Code******************

private void btnAddActionPerformed(java.awt.event.ActionEvent evt) {


CB1.addItem(txtState.getText());
txtState.setText(null);
txtTotal.setText("" + CB1.getItemCount());
txtTotal.setEditable(false);
}

private void btnRemoveActionPerformed(java.awt.event.ActionEvent evt) {


CB1.removeItemAt(CB1.getSelectedIndex());
txtTotal.setText("" + CB1.getItemCount());
}

private void btnRemoveAllActionPerformed(java.awt.event.ActionEvent evt) {


CB1.removeAllItems();
txtTotal.setText("" + CB1.getItemCount());
}

private void CB1ActionPerformed(java.awt.event.ActionEvent evt) {


if(CB1.getSelectedItem().equals("Bihar"))
{
CB2.addItem("Gaya");
CB2.addItem("Patna");
CB2.addItem("Jehanabad");
}
if(CB1.getSelectedItem().equals("UP"))
{
CB2.addItem("Gaya");
CB2.addItem("Patna");
CB2.addItem("Jehanabad");
}

IP Notes Kumar Gourab DAV PS, C.R.,R.C.,Gaya

You might also like