コード例 #1
0
ファイル: JanelaEstoque.cs プロジェクト: mhmartins/scvs
        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
ファイル: MenuPrincipal2.cs プロジェクト: nbleonardo/scvs
 private void mnuArquivoNovo_Click(object sender, EventArgs e)
 {
     CadastroSacoles Form = new CadastroSacoles();
     Form.Show();
 }
コード例 #4
0
ファイル: JanelaEstoque.cs プロジェクト: nbleonardo/scvs
 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
ファイル: Principal.cs プロジェクト: nbleonardo/scvs
 private void cadastrarToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         if (Application.OpenForms["CadastroSacoles"] == null)
         {
             CadastroSacoles frm = new CadastroSacoles();
             frm.MdiParent = this;
             frm.Show();
         }
     }
     catch { }
 }