Esempio n. 1
0
        private void btnVentas_Click(object sender, EventArgs e)
        {
            VentasForm ventasform = new VentasForm();

            ventasform.Show();
            Close();
        }
Esempio n. 2
0
        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();
        }
        private void RegistroVentasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            VentasForm ventasForm = new VentasForm();

            ventasForm.Show();
        }