private void smnRetornoAcertoTitulo_Click(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     Modal.FormAReceber formAReceber = new Modal.FormAReceber(this, "Update");
     formAReceber.ShowDialog();
     Cursor.Current = Cursors.Default;
 }
 private void btnRetornoAcertoIncluir_Click(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     Modal.FormAReceber formAReceber = new Modal.FormAReceber(this, "Create");
     formAReceber.ShowDialog();
     Cursor.Current = Cursors.Default;
 }