private void btnVentas_Click(object sender, EventArgs e) { VentasForm ventasform = new VentasForm(); ventasform.Show(); Close(); }
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(); }