예제 #1
0
        private void btnactualizar_Click(object sender, EventArgs e)
        {
            try
            {
                if (txtNombre.Text != "" && txtDireccion.Text != "" && txtTelefono.Text != "")
                {
                    data();

                    response = bd.ModificarEmpresa(objetEmpresa);
                    if (response > 0)
                    {
                        msg_exito msg = new msg_exito("Se ha Actualizado Correctamente la empresa", 23, 156);
                        msg.Show();
                        EliminarTexto();
                    }
                    else
                    {
                        msg_error msg = new msg_error("Se ha generado un error intentelo de nuevo", 60, 156);
                        msg.Show();
                    }
                }
                else
                {
                    msg_info msg = new msg_info("No puedes dejar campos vacíos", 60, 156);
                    msg.Show();
                }
            }
            catch (Exception) {
                msg_error msg = new msg_error("Se ha generado un error desconocido", 65, 156);
                msg.Show();
            }
        }
예제 #2
0
 private void btninsertar_Click(object sender, EventArgs e)
 {
     try
     {
         if (txtNombre.Text != "" && txtDireccion.Text != "" && txtTelefono.Text != "")
         {
             data();
             response = bd.AgregarEmpresa(objetEmpresa);
             if (response > 0)
             {
                 msg_exito msg = new msg_exito("Se ha Agregado Correctamente la empresa", 48, 156);
                 msg.Show();
                 btninsertar.Visible = false;
                 datos           = bd.MaximoEmpresa();
                 objetEmpresa.id = Convert.ToInt32(datos.Rows[0]["id"]);
                 EliminarTexto();
             }
             else
             {
                 msg_error msg = new msg_error("Se ha generado un error intentelo de nuevo", 60, 156);
                 msg.Show();
             }
         }
         else
         {
             msg_info msg = new msg_info("No puedes dejar campos vacíos", 67, 156);
             msg.Show();
         }
     }
     catch (Exception) {
         msg_error msg = new msg_error("Se ha generado un error desconocido", 65, 156);
         msg.Show();
     }
 }
예제 #3
0
        private void btnLogin_Click(object sender, EventArgs e)
        {
            try
            {
                if (txtemail.Text != "" && txtpass.Text != "")
                {
                    objeus.email = txtemail.Text;
                    objeus.pass  = txtpass.Text;
                    count        = bdLogin.Login(objeus);

                    if (count.Rows.Count > 0)
                    {
                        int      id        = Convert.ToInt32(count.Rows[0]["id"]);
                        string   nombre    = count.Rows[0]["nombre"].ToString();
                        string   apellidos = count.Rows[0]["apellidos"].ToString();
                        string   turno     = count.Rows[0]["turno"].ToString();
                        int      idtipo    = Convert.ToInt32(count.Rows[0]["idtipo"]);
                        string   email     = count.Rows[0]["email"].ToString();
                        frm_menu frm       = new frm_menu(id, nombre, apellidos, turno, idtipo, email);
                        frm.Show();
                        this.Hide();
                    }
                    else
                    {
                        msg_error msg = new msg_error("Usuario o Contraseña incorrecta", 67, 157);
                        msg.Show();
                    }
                }
                else
                {
                    msg_info msg = new msg_info("No puedes dejar campos vacíos", 67, 157);
                    msg.Show();
                }
            }
            catch (Exception) {
                msg_error msg = new msg_error("Se ha generado un error desconocido", 65, 156);
                msg.Show();
            }
        }