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

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

            Form.Show();
        }
예제 #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 { }
 }