private void button1_Click(object sender, EventArgs e) { String nombreUsuario = txtUsuario.Text; String password = txtPassword.Text; var paramsProcedure = new Dictionary <string, string>(); paramsProcedure.Add("username", nombreUsuario); paramsProcedure.Add("password", password); DataTable usuario = Server.EjecutarSp("SP_Login", paramsProcedure); if (Utiles.Utiles.handleError(usuario)) { Global.IdUsuario = usuario.Rows[0].ItemArray[0].ToString(); String nombre = usuario.Rows[0].ItemArray[1].ToString(); int idSucursal = Convert.ToInt32(usuario.Rows[0].ItemArray[2]); int idRol = Convert.ToInt32(usuario.Rows[0].ItemArray[3]); if (idSucursal == -1 || idRol == -1) { Cl_Roles roles = new Cl_Roles(idSucursal, idRol); roles.ShowDialog(); } else { Global.IdRol = idRol; Global.IdSucursal = idSucursal; MenuInicial menu = new MenuInicial(); menu.ShowDialog(); } Close(); } }
private void timer1_Tick(object sender, EventArgs e) { progressBar1.Increment(5); if (progressBar1.Value == 100) { MenuInicial c = new MenuInicial(); timer1.Stop(); c.ShowDialog(); progressBar1.Increment(-100); } }
private void Btn_Aceptar_Click(object sender, EventArgs e) { if (this.Validar()) { Roles roles = new Roles(_idUsuario); if (roles.rol_name.Equals("") == true) { roles.ShowDialog(); } else { Txt_Password.Clear(); MenuInicial menu = new MenuInicial(_idUsuario); menu.LevantarRol(roles.rol_name); menu.ShowDialog(); } } }
private void btnAceptar_Click(object sender, EventArgs e) { if (idRol == -1) { DataRowView rol = (DataRowView)cmbRol.Items[Convert.ToInt32(cmbRol.SelectedIndex)]; idRol = Convert.ToInt32(rol[0]); } if (idSucursal == -1) { DataRowView sucursal = (DataRowView)cmbSucursal.Items[Convert.ToInt32(cmbSucursal.SelectedIndex)]; idSucursal = Convert.ToInt32(sucursal[0]); } Global.IdRol = idRol; Global.IdSucursal = idSucursal; MenuInicial menu = new MenuInicial(); menu.ShowDialog(); Close(); }