private void bIniciar_Click(object sender, EventArgs e) { int puerto = 0; try { puerto = Convert.ToInt32(tPuerto.Text); } catch (Exception) { MessageBox.Show("Ingresa un número de puerto válido."); return; } if (!Conexion.Crear_Conexion(tIP.Text, puerto, this, Convert.ToInt32(cCantidadJugadores.SelectedItem), Juego.ObtenerJuego)) { MessageBox.Show("Ingresa una dirección IP valida"); } else { bIniciar.Enabled = false; bFinalizar.Enabled = true; bRegistarJugador.Enabled = false; bComenzarPartida.Enabled = true; } }
private void bIniciar_Click(object sender, EventArgs e) { int puerto = 0; try { puerto = Convert.ToInt32(tPuerto.Text); } catch (Exception) { MessageBox.Show("Ingresa un número de puerto válido."); return; } if (!Conexion.Crear_Conexion(tIP.Text, puerto, this)) { MessageBox.Show("Ingresa una dirección IP valida"); } else { bIniciar.Enabled = false; } }