private void pictureBox3_Click(object sender, EventArgs e) { fInfoForo f = new fInfoForo(user, debate); this.Hide(); f.ShowDialog(); this.Close(); }
private void bRespuesta_Click(object sender, EventArgs e) { try { Respuesta r = new Respuesta(this.debate, this.user, tRespuesta.Text, DateTime.Now.ToString("dd/MM/yyyy")); MessageBox.Show("Respuesta creada con éxito"); fInfoForo f = new fInfoForo(user, debate); this.Hide(); f.ShowDialog(); this.Close(); } catch (Exception ex) { MessageBox.Show("Se ha producido un error: " + ex.Message); } }
private void bInfoDebate_Click(object sender, EventArgs e) { try { if (debateSeleccionado != null) { fInfoForo f = new fInfoForo(user, debateSeleccionado); this.Hide(); f.ShowDialog(); this.Close(); } else { throw new Exception("No se ha seleccionado ningun debate"); } } catch (Exception ex) { MessageBox.Show("ERROR:" + ex.Message); } }