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

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

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