コード例 #1
0
        private void btnVentas_Click(object sender, EventArgs e)
        {
            VentasForm ventasform = new VentasForm();

            ventasform.Show();
            Close();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: glnicolas/erp-ventas-8b
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            //Application.Run(new Login());
            //Login loginForm = new Login();
            VentasForm ofertasForm = new VentasForm();

            ofertasForm.FormClosed += MainForm_Closed;
            ofertasForm.Show();
            Application.Run();
        }
コード例 #3
0
        private void RegistroVentasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            VentasForm ventasForm = new VentasForm();

            ventasForm.Show();
        }