This is the code of my form, the part of the JOptionPane is where I have the problem. // LDVives = Place where you live
private void txtNombreActionPerformed(java.awt.event.ActionEvent evt) {
txtNombre.getText();
txtEdad.getText();
txtLDVives.getText();
}
private void btnEnviarActionPerformed(java.awt.event.ActionEvent evt) {
JOptionPane.showMessageDialog(null, "Tus datos son\nNombre: "+txtNombre+"\nEdad: "+txtEdad+"\nLugar donde Vives: "+txtLDVives);
}