private void testeToolStripMenuItem_Click(object sender, EventArgs e) { Exame_realizacao frm_exame_Realizacao = new Exame_realizacao(pessoa); this.Dispose(); frm_exame_Realizacao.ShowDialog(); }
private void dg_simulados_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex > 0) { pessoa.date = Convert.ToDateTime(dg_simulados.Rows[e.RowIndex].Cells[2].Value); DateTime dat = new DateTime(); dat = DateTime.Today; if (pessoa.date == dat) { pessoa.id_sim = Convert.ToInt32(dg_simulados.Rows[e.RowIndex].Cells[0].Value); Exame_realizacao frm_Exame_realizacao = new Exame_realizacao(pessoa); this.Dispose(); frm_Exame_realizacao.ShowDialog(); } } }