Código PHP:
// Se carga cuando empieza el formulario
jComboBox1.addItem("Suma");
jComboBox1.addItem("Restar");
Código PHP:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// Se selecciona el jComboBox1
// Se puede elegir resta o suma y se presiona aceptar
// Deberia de hacer lo siguiente
If (jComboBox1.addItem("Suma")
{
int n1=20;
int n2=10;
int resultado = n1+n2;
jTextField1.setText(Integer.toString(resultado));
}
If (jComboBox1.addItem("Restar")
{
int n1=20;
int n2=10;
int resultado = n1-n2;
jTextField1.setText(Integer.toString(resultado));
}
}