private void button7_Click(object sender, EventArgs e) { try { FrmAulas janela = new FrmAulas ("novo"); janela.ShowDialog(); } catch (Exception ex) { MessageBox.Show("Ocorreu o seguinte erro: " + ex.Message, "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void button6_Click(object sender, EventArgs e) { try { int valor = int.Parse(auladgv[0, auladgv.CurrentRow.Index].Value.ToString()); string horainicio = auladgv[1, auladgv.CurrentRow.Index].Value.ToString(); string duracao = auladgv[2, auladgv.CurrentRow.Index].Value.ToString(); string local = auladgv[3, auladgv.CurrentRow.Index].Value.ToString(); string dia = auladgv[4, auladgv.CurrentRow.Index].Value.ToString(); string alunos = auladgv[5, auladgv.CurrentRow.Index].Value.ToString(); string idmod = auladgv[6, auladgv.CurrentRow.Index].Value.ToString(); FrmAulas janela = new FrmAulas("editar", horainicio, duracao, local, dia, alunos, idmod, valor); janela.ShowDialog(); } catch (Exception ex) { MessageBox.Show("Ocorreu o seguinte erro: " + ex.Message, "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error); } }