Ejemplo n.º 1
0
        private void mantenimientoUsuariosToolStripMenuItem_Click(object sender, EventArgs e)
        {
            mantenimientoUsuarios temp = new mantenimientoUsuarios();

            //temp.WindowState = FormWindowState.Maximized;
            temp.MdiParent = this;
            temp.Show();
        }
Ejemplo n.º 2
0
        private void btnEliminar_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtCod.Text))
            {
                MessageBox.Show("Debe escribir el id de la Usuario a eliminar.");
                return;
            }
            else
            {
                Usuarios_Entity User    = new Usuarios_Entity();
                Usuarios_BO     Usuario = new Usuarios_BO();
                User.iCodUsuario = txtCod.Text;

                Usuario.vEliminarUsuario(User);
                MessageBox.Show("Usuario ha sido Eliminado.");
                mantenimientoUsuarios prdu = new mantenimientoUsuarios();
                prdu.MdiParent = this.MdiParent;
                this.Hide();
                prdu.Show();
            }
        }
Ejemplo n.º 3
0
 private void btnGuardar_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(txtUsuario.Text))
     {
         MessageBox.Show("Debe agregar el nombre del Usuario.");
         return;
     }
     else
     {
         if (string.IsNullOrEmpty(txtPassword.Text))
         {
             MessageBox.Show("Debe agregar la contraseña del Usuario.");
             return;
         }
         else
         {
             if (string.IsNullOrEmpty(txtPregunta.Text))
             {
                 MessageBox.Show("Debe agregar la pregunta secreta del Usuario.");
                 return;
             }
             else
             {
                 if (string.IsNullOrEmpty(cmbRol.Text))
                 {
                     MessageBox.Show("Debe de seleccionar un Rol.");
                     return;
                 }
                 else
                 {
                     try
                     {
                         Usuarios_Entity User    = new Usuarios_Entity();
                         Usuarios_BO     Usuario = new Usuarios_BO();
                         int             seleccionado;
                         seleccionado     = cmbRol.SelectedIndex;
                         User.iRol        = gvUsuariosA[0, seleccionado].Value.ToString();
                         User.strUsuario  = txtUsuario.Text;
                         User.strPassword = txtPassword.Text;
                         User.iStatus     = txtStatus.Text;
                         User.strPregunta = txtPregunta.Text;
                         Usuario.vInsertarUsuario(User);
                         MessageBox.Show("Usuario ha sido creado.");
                         string[] user = Globales.Usuario.CapturarUsuario();
                         if (user[0] != "No Autenticado")
                         {
                             mantenimientoUsuarios prdu = new mantenimientoUsuarios();
                             prdu.MdiParent = this.MdiParent;
                             this.Hide();
                             prdu.Show();
                         }
                         else
                         {
                             this.Hide();
                         }
                     }
                     catch (Exception ex)
                     {
                         MessageBox.Show(ex.Message, "Error!.");
                     }
                 }
             }
         }
     } //termina if
 }
Ejemplo n.º 4
0
        private void btnEditar_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtCod.Text))
            {
                MessageBox.Show("Debe escribir el id del Usuario a editar.");
                return;
            }
            else
            {
                if (string.IsNullOrEmpty(txtUsuario.Text))
                {
                    MessageBox.Show("Debe agregar el Usuario.");
                    return;
                }
                else
                {
                    if (string.IsNullOrEmpty(txtPassword.Text))
                    {
                        MessageBox.Show("Debe agregar la contraseña del Usuario.");
                        return;
                    }
                    else
                    {
                        if (string.IsNullOrEmpty(txtPregunta.Text))
                        {
                            MessageBox.Show("Debe agregar la pregunta secreta del Usuario.");
                            return;
                        }
                        else
                        {
                            if (string.IsNullOrEmpty(cmbRol.Text))
                            {
                                MessageBox.Show("Debe de seleccionar un Rol.");
                                return;
                            }
                            else
                            {
                                try
                                {
                                    Usuarios_Entity User    = new Usuarios_Entity();
                                    Usuarios_BO     Usuario = new Usuarios_BO();
                                    User.iCodUsuario = txtCod.Text;
                                    User.iRol        = cmbRol.SelectedText;
                                    User.strUsuario  = txtUsuario.Text;
                                    User.strPassword = txtPassword.Text;
                                    User.iStatus     = txtStatus.Text;
                                    User.strPregunta = txtPregunta.Text;
                                    Usuario.vModificarUsuario(User);
                                    MessageBox.Show("Usuario ha sido Modificado.");
                                    mantenimientoUsuarios prdu = new mantenimientoUsuarios();
                                    prdu.MdiParent = this.MdiParent;
                                    this.Close();
                                    prdu.Show();
                                }

                                catch (Exception ex)
                                {
                                    MessageBox.Show(ex.Message);
                                }
                            }
                        }
                    }
                } //termina if
            }
        }