private void button1_Click(object sender, EventArgs e) { if(MessageBox.Show("Seguro que quiere agregar este candidato a la prueba?", "", MessageBoxButtons.YesNo, MessageBoxIcon.Question)== DialogResult.No){ return; } else { try { int pos = dataGridView1.CurrentCell.RowIndex; int IdCandidato= (int)dataGridView1[0, pos].Value; Resultados r = new Resultados(Id, IdCandidato, this); r.MdiParent = this.MdiParent; r.Show(); } catch { MessageBox.Show("Primero seleccione a un candidato"); } } }
private void button1_Click(object sender, EventArgs e) { if (MessageBox.Show("Seguro que quiere agregar este candidato a la prueba?", "", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { return; } else { try { int pos = dataGridView1.CurrentCell.RowIndex; int IdCandidato = (int)dataGridView1[0, pos].Value; Resultados r = new Resultados(Id, IdCandidato, this); r.MdiParent = this.MdiParent; r.Show(); } catch { MessageBox.Show("Primero seleccione a un candidato"); } } }