static void Main() { inicio ini = new inicio(); ini.ShowDialog(); if (ini.login() != -1) { Application.Run(new MDIMenu(ini.tipo)); } }
private void ExitToolsStripMenuItem_Click(object sender, EventArgs e) { this.Enabled = false; inicio ini = new inicio(); ini.ShowDialog(); if (ini.login() != -1) { this.Enabled = true; } else { this.Close(); } }
private void cerrarSesionToolStripMenuItem_Click(object sender, EventArgs e) { this.Enabled = false; inicio ini = new inicio(); ini.ShowDialog(); if (ini.login() != -1) { this.Enabled = true; this.desabilitar(ini.tipo); } else { this.Close(); } }