LexarG56

Generation

generate functionThu, 20 Jul 2023

JComboBox con 5 model en un ActionPerformed para un boton registrar

@Override public void actionPerformed(ActionEvent a){ if (a.getSource() == btnRegistrar) { String nombre = txtNombre.getText(); String apellido = txtApellido.getText(); String contraseña = txtContraseña.getText(); String correo = txtCorreo.getText(); String tipo = (String) cmbTipo.getSelectedItem(); if (tipo.equals("Seleccionar Tipo")) { JOptionPane.showMessageDialog(null, "Por favor seleccione un tipo"); } else { Usuario usu = new Usuario(); usu.setNombre(nombre); usu.setApellido(apellido); usu.setContraseña(contraseña); usu.setCorreo(correo); usu.setTipo(tipo); usuarios.

Questions about programming?Chat with your personal AI assistant