Example #1
0
        private void btnaltera_Click(object sender, EventArgs e)
        {
            AlterareExcluir Form = new AlterareExcluir();

            Form.Show();
            this.Close();
        }
Example #2
0
 private void alterarCadastroToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         if (Application.OpenForms["AlterareExcluir"] == null)
         {
             AlterareExcluir frm = new AlterareExcluir();
             frm.MdiParent = this;
             frm.Show();
         }
     }
     catch { }
 }
Example #3
0
 private void alterarCadastroToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         if (Application.OpenForms["AlterareExcluir"] == null)
         {
             AlterareExcluir frm = new AlterareExcluir();
             frm.MdiParent = this;
             frm.Show();
         }
     }
     catch { }
 }
Example #4
0
        private void btnexcluir_Click(object sender, EventArgs e)
        {
            AlterareExcluir Form = new AlterareExcluir();

            Form.Show();
        }
Example #5
0
 private void btnaltera_Click(object sender, EventArgs e)
 {
     AlterareExcluir Form = new AlterareExcluir();
     Form.Show();
     this.Close();
 }
Example #6
0
 private void btnexcluir_Click(object sender, EventArgs e)
 {
     AlterareExcluir Form = new AlterareExcluir();
     Form.Show();
 }