Beispiel #1
0
        private void btncadastrar_Click(object sender, EventArgs e)
        {
            CadastroSacoles Form = new CadastroSacoles();

            Form.Show();
            this.Close();
        }
Beispiel #2
0
 private void cadastrarToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         if (Application.OpenForms["CadastroSacoles"] == null)
         {
             CadastroSacoles frm = new CadastroSacoles();
             frm.MdiParent = this;
             frm.Show();
         }
     }
     catch { }
 }
Beispiel #3
0
 private void mnuArquivoNovo_Click(object sender, EventArgs e)
 {
     CadastroSacoles Form = new CadastroSacoles();
     Form.Show();
 }
Beispiel #4
0
 private void btncadastrar_Click(object sender, EventArgs e)
 {
     CadastroSacoles Form = new CadastroSacoles();
     Form.Show();
     this.Close();
 }
Beispiel #5
0
        private void mnuArquivoNovo_Click(object sender, EventArgs e)
        {
            CadastroSacoles Form = new CadastroSacoles();

            Form.Show();
        }
Beispiel #6
0
 private void cadastrarToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         if (Application.OpenForms["CadastroSacoles"] == null)
         {
             CadastroSacoles frm = new CadastroSacoles();
             frm.MdiParent = this;
             frm.Show();
         }
     }
     catch { }
 }