Ejemplo n.º 1
0
        private void btnaltera_Click(object sender, EventArgs e)
        {
            AlterareExcluir Form = new AlterareExcluir();

            Form.Show();
            this.Close();
        }
Ejemplo n.º 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 { }
 }
Ejemplo n.º 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 { }
 }
Ejemplo n.º 4
0
        private void btnexcluir_Click(object sender, EventArgs e)
        {
            AlterareExcluir Form = new AlterareExcluir();

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