private void acept_Click(object sender, EventArgs e) { string sex, tipo; int a; if (men.Checked == true) { sex = "Macho"; } else { sex = "Hembra"; } if (dog.Checked == true) { tipo = "Perro"; } else { tipo = "Gato"; } if (!string.IsNullOrEmpty(nombre.Text) && !string.IsNullOrEmpty(edad.Text) && !string.IsNullOrEmpty(razgos.Text) && !string.IsNullOrEmpty(tiempo.Text)) { if (int.TryParse(edad.Text, out a)) { string completo = id.Text + " : " + nombre.Text + " | " + dueño.Text; if (int.TryParse(nombre.Text, out a)) { MessageBox.Show("No se permiten numeros el nombre"); } else { string vida = (edad.Text + " " + tiempo.Text); Consultas.actualizar_Mascota(id.Text, tipo, nombre.Text, sex, vida, razgos.Text, dueño.Text, completo, raza.Text); Consultas.actualizar_Relacion(dueño.Text, id.Text); } } else { MessageBox.Show("Solo numeros en la edad"); } } else { MessageBox.Show("Llene todo los campos"); } }