viernes, 24 de junio de 2016

soporte tecnico


HOJA DE VIDA

SOLICITUD DE MANTENIMIENTO
Solicitud de mantenimiento

Folio: 2157418734
Nombre del solicitante: Manuel Cuellar Rufino
Departamento: Laboratorio técnico de computación
Fecha de solicitud: 21 de abril de 2016
Descripción del equipo
No. De serie
Observaciones
Computadora de
escritorio HP
5500
Necesita ser
desfragmentada y se
necesita urgentemente
borrar virus
monitor HP
5500
La pantalla es muy
sucia y tiene estática
teclado HP
5500
Necesita que le retire
la basura entre las teclas
Mouse HP
5500
No sirve se solicita que
sea reemplazado
SOLICITUD DE MANTENIMIENTO



INFORME DE MANTENIMIENTO



INVENTARIO DEL EQUIPO DE COMPUTO E IMPRESORAS

   

O







BITÁCORA

REPORTE DE PERDIDA DE EQUIPO DE COMPUTO.

REPORTE No.
1
FECHA:  12/04/16
DESCRIPCION DEL INCIDENTE:
ROBO
QUE NADIE SE DIO CUENTA DEL ROBO ASTA QUE UN ESTUDIAN SE DIO CUENTA
COMO SE DETECTO:
LO REPORTO UN ESTUDIANTE DEL INSTITUTO

DESCRIBIR LO QUE ENCONTRO:
SE ENCONTRO LOS CABLES ROTOS
NOMBRE DEL EQUIPO:
HP

UBICACIÓN:
LINCE AV. AREQUIPA CUADRA 19
DEPARTAMENTO:
LIMA
RESPONSABLE:
MANUEL CUELLAR RUFINO
OBSERVACIONES:
FALTA DE MAS PERSONALES DE SEGURIDAD

MANUEL C. A
FIRMA DE QUIEN REALIZA EL REPORTE


REPORTE DE DAÑOS DE EQUIPO DE COMPUTO

REPORTE DE DAÑOS EN EQUIPO DE COMPUTO
REPORTE No.
8
FECHA:
18/05/2016
DESCRIPCIÓN DEL INCIDENTE

MUY LENTO AL ENCENDER EL EQUIPO
COMO SE DETECTO:
MAL FUNCIONAMIENTO
DESCUBRIR LO QUE ENCONTRO:
VIRUS
NOMBRE DEL SOFTWARE:
disco duro
VERSION:
500GB
ARCHIVO:
PROGRAMAS EN MAL FUNCIONAMIENTO
HERRAMIENTAS:

CONSECUENCIAS DEL INCIDENTE:
APAGARSE EN PLENO FUNCIONAMIENTO
PRIMERAS MEDIDAS TOMADAS:
HACER UN FORMATEO
MANUEL C.S
FIRMA QUIEN REALIZA EL REPORTE


REPORTE DE BAJA DE EQUIPO DE COMPUTO
REPORTE No.
2
FECHA: 25/05/2016
NOMBRE DEL EQUIPO:
HP

DESCRIPCION:
DISCO DURO QUEMADO

UBICACIÓN:
LA VICTORIA

DEPARTAMENTO:
LIMA

MOTIVO DE BAJA:
EL MAL FUNCIONAMIENTO DE LA PC

COMO SE DETECTO:
AL MOMENTO DE INSTALAR UN PROGRAMA


RESPONSABLES
MANUEL CUELLAR RUFINO
OBSERVACIONES:

MANUEL C.A.
FIRMA DE QUIEN REALIZA LA FIRMA
REPORTE DE BAJA DE EQUIPO DE COMPUTO

MANUAL C# 1

 EJERCICIO 1:

 DISEÑO:


 CÓDIGO DE LA CLASE :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace trabajo_final
{
    class Clase01
    {
        internal Double subtotal(int precio, int cantidad)
        {
            double stotal = precio * cantidad;
            return stotal;
        }
        internal Double igv(double stotal)
        {
            double xigv = ((stotal * 20) / 100);
            return xigv;
        }
        internal Double total(double  stotal, double igv)
        {
            double total = (stotal + igv);
            return total;
        }
    }
}


CODIGO DEL  FORMULARIO:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace trabajo_final
{
    public partial class frmvideos : Form
    {
        Clase01 objcalcular = new Clase01();
        public frmvideos()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            lstlista.Items.Add("<<<Genero.......>>>");
            lstlista.Items.Add("Infantil");
            lstlista.Items.Add("Accion");
            lstlista.Items.Add("Dramas");
            lstlista.Items.Add("Terror");
            lstlista.Items.Add("Comedia");
            lstlista.Items.Add("Ciencia ficcion");
            lstlista.Items.Add("Misterio");
     
        listaidiomas();
        listadirector();
        listaformato();
     

     
        }

        private void btnnuevo_Click(object sender, EventArgs e)
        {
            txtcodigo.Text = "";
            txtduracion.Text = "";
            cboidioma.SelectedIndex = 0;
            cbodirector.SelectedIndex = 0;
            cboformato.SelectedIndex = 0;
         
            lstlista.SelectedIndex = 0;
            txtp1.Text = "";
            txtp2.Text = "";
            txtp3.Text = "";
            txtp4.Text = "";
            txtprecio.Text = "";
            txtcantidad.Text = "";
            txtigv.Text = "";
            txtsubtotal.Text = "";
            txttotal.Text = "";
            txtcodigo.Focus();
        }

        private void btnagregar_Click(object sender, EventArgs e)
        {
            String ycodigo = (txtcodigo.Text.ToUpper());
            String yduracion = (txtduracion.Text.ToUpper());
            String yidioma = (cboidioma.SelectedItem.ToString());
            String ydirector = (cbodirector.SelectedItem.ToString());
            String yformato = (cboformato.SelectedItem.ToString());
         
            String yvideos = (lstlista.SelectedItem.ToString());
            String ypelicula1 = (txtp1.Text.ToUpper());
            String ypelicula2 = (txtp2.Text.ToUpper());
            String ypelicula3 = (txtp3.Text.ToUpper());
            String ypelicula4 = (txtp4.Text.ToUpper());
            String yprecio = (txtprecio.Text.ToUpper());
            String ycantidad = (txtcantidad.Text.ToUpper());
            String ysubtotal = (txtsubtotal.Text.ToUpper());
            String yigv = (txtigv.Text.ToUpper());
            String ytotal = (txttotal.Text.ToUpper());
            dgvlista.Rows.Add(ycodigo, yduracion, yidioma, ydirector, yformato, yvideos,
                ypelicula1, ypelicula2,ypelicula3,ypelicula4, yprecio, ycantidad, ysubtotal, yigv, ytotal);
         
        }

        private void btncalcular_Click(object sender, EventArgs e)
        {
            int can = int.Parse(txtcantidad.Text);
            int pre = int.Parse(txtprecio.Text);
            double stotal = objcalcular.subtotal(can, pre);
            txtsubtotal.Text = stotal.ToString();
            double igv=objcalcular.igv(stotal);
            txtigv.Text=igv.ToString();
            double total=objcalcular.total(stotal,igv);
            txttotal.Text = total.ToString();

        }

        private void lstlista_SelectedIndexChanged(object sender, EventArgs e)
        {
            int indice = lstlista.SelectedIndex;
            if (indice == 0)
            {
                txtp1.Text = "";
                txtp2.Text = "";
                txtp3.Text = "";
                txtp4.Text = "";
            }
            else if (indice == 1)
            {
                txtp1.Text = "Blanca Nieves";
                txtp2.Text = "Rio";
                txtp3.Text = "Tarzan";
                txtp4.Text = "Pitufos";
            }
            else if (indice == 2)
            {
                txtp1.Text = "El cazador";
                txtp2.Text = "Objetivos: Londres";
                txtp3.Text = "El ultimo espia";
                txtp4.Text = "Batman y Super Man";
            }
            else if (indice == 3)
            {
                txtp1.Text = "La vida es bella";
                txtp2.Text = "El pianista";
                txtp3.Text = "Titanic";
                txtp4.Text = "Siete almas";
            }
            else if (indice == 4)
            {
                txtp1.Text = "El aro";
                txtp2.Text = "La casa embrujada";
                txtp3.Text = "El exorsista";
                txtp4.Text = "La bruja";
            }
            else if (indice == 5)
            {
                txtp1.Text = "Ted";
                txtp2.Text = "Mi abuelo es un peligro";
                txtp3.Text = "Pixeles";
                txtp4.Text = "Dos ladrones y medio";
            }
            else if (indice == 6)
            {
                txtp1.Text = "El octavo pasajero";
                txtp2.Text = "Matrix";
                txtp3.Text = "Regreso al futuro";
                txtp4.Text = "La quinta ola";
            }
            else if (indice == 7)
            {
                txtp1.Text = "Prisioneros";
                txtp2.Text = "Seven";
                txtp3.Text = "Nivel 13";
                txtp4.Text = "El jardinero fiel";
            }
        }

        void listaidiomas()
        {
            var idiomas = cboidioma.Items;
            idiomas.Clear();
            cboidioma.Items.Add("Idiomas");
            cboidioma.Items.Add("Ingles");
            cboidioma.Items.Add("Español");
            cboidioma.Items.Add("Portuguez");
            cboidioma.Items.Add("Francez");
            cboidioma.Items.Add("Arebe");
            cboidioma.Items.Add("Italiano");
            cboidioma.Items.Add("Ruso");
            cboidioma.SelectedIndex = 0;
        }

            void listadirector()
        {
            var director = cbodirector.Items;
            director.Clear();
            cbodirector.Items.Add("Director");
            cbodirector.Items.Add("Ridley Scott");
            cbodirector.Items.Add("Danny Boyle");
            cbodirector.Items.Add("Pedro Caballero");
            cbodirector.Items.Add("Steven Allan");
            cbodirector.Items.Add("Quentin Tarantino");
            cbodirector.Items.Add("Christopher Nolan");
            cbodirector.Items.Add("David Fincher");
            cbodirector.Items.Add("Martin Charles");
            cbodirector.Items.Add("Sir Peter");
            cbodirector.Items.Add("Otros");
            cbodirector.SelectedIndex = 0;

            }
            void listaformato()
        {
            var formato = cboformato.Items;
            formato.Clear();
            cboformato.Items.Add("Formatos");
            cboformato.Items.Add("DVD Full");
            cboformato.Items.Add("DVD Rip");
            cboformato.Items.Add("VHSRip");
            cboformato.Items.Add("HDRip");
            cboformato.SelectedIndex = 0;

            }
         
     

        private void cbocategoria_SelectedIndexChanged(object sender, EventArgs e)
        {

        }

        private void btnsalir_Click(object sender, EventArgs e)
        {
            this.Dispose();
            this.Close();
        }
EXPLICACION :
 El ejercicio lo que  nos habla de un cliente que va a comprar un dvd video  
por ejemplo: el cliente va  a una tienda verifica el codigo del video la duracion, idioma, director, y escoge el  formato y video y ingresa el precio  la cantidad y calcula el subtotal  la igv y al final calcula la suma total y lo agrega a una base data.


MANUAL C# 2

1 EJERCICIO 2:
desarrollar una aplicación con características de un automóvil.
DISEÑO:
CODIGO DE LA CLASE:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace aplicaautomovil
{
    class clase03
    {
        internal Double subtotal(Double xprecio, Double xcantidad)
        {
            Double xtotal = xprecio * xcantidad;
            return xtotal;
        }
        internal Double IGV(Double subtotal)
        {
            Double xIGV = ((subtotal*10)/100);
            return xIGV;
        }
        internal Double total(Double subtotal, Double IGV)
        {
            Double xtotal = (subtotal+ IGV);
            return xtotal;
        }
    }

}

CODIGO QUE VA DENTRO DEL FORMULARIO:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace aplicaautomovil
{
    public partial class frmautomovil : Form
    {
        clase03 objcalculo = new clase03();
        public frmautomovil()
        {
            InitializeComponent();
        }
        void listautomovil()
        {
            var xcarro = cbocarro.Items;
            xcarro.Clear();
            xcarro.Add("<<Carro...>");
            xcarro.Add("auto");
            xcarro.Add("camioneta");
            xcarro.Add("camion");
            xcarro.Add("bus");

        }
        void autos()
        {
            var xautos = lstautomovil.Items;
            xautos.Clear();
            xautos.Add("Compatibilidad con teléfonos inteligentes");
            xautos.Add("Controles de información y entretenimiento");
            xautos.Add("Desempeño de los neumáticos");
            xautos.Add("Sin repuestos");
            xautos.Add("Asientos para niños adecuados");

        }
        void camioneta()
        {
            var xcamioneta = lstautomovil.Items;
            xcamioneta.Clear();
            xcamioneta.Add("Motores TDI");
            xcamioneta.Add("Tecnologías de propulsión");
            xcamioneta.Add("Cambio manual de seis marchas");
            xcamioneta.Add("Cambio automático de ocho marchas");
            xcamioneta.Add("Amarok con tecnología BlueMotion");

        }
        void volvo()
        {
            var xvolvo = lstautomovil.Items;
            xvolvo.Clear();
            xvolvo.Add(" maxima pesohasta 100 toneladas");
            xvolvo.Add("Motores D13A: 400, 440, 480 o 520 CV");
            xvolvo.Add("Cabinas Cabina Globetrotter XL, Cabina Globetrotter, Cabina litera");
            xvolvo.Add("Hasta 610 CV de potencia de bajo consumo");
            xvolvo.Add("Bajo consumo de combustible integrado");


        }
        void bus()
        {
            var xbus = lstautomovil.Items;
            xbus.Clear();
            xbus.Add("PUERTAS: plegable y/o basculante con mando neumático.");
            xbus.Add("VENTANAS: Laterales de aluminio anodizado");
            xbus.Add("CAJUELAS: De baterías, para herramientas, puertas de revisión");
            xbus.Add("ESPEJOS EXTERIORES: Panorámicos con brazos metálicos");
            xbus.Add("ESPEJOS INTERIORES: Dos espejos cóncavos grandes");
            xbus.Add("PARABRISAS: Delantero curvo laminado");
        }

             private void Form1_Load(object sender, EventArgs e)
        {

            listautomovil();
        }

        private void cbocarro_SelectedIndexChanged(object sender, EventArgs e)
        {
             int indice = cbocarro.SelectedIndex;
            switch (indice)
            {
                case 0: {lstautomovil.Items.Clear();  break; }
                case 1: { autos()  ; break; }
                case 2: { camioneta(); break; }
                case 3: {volvo(); break; }
                case 4: {bus(); break; }
             
            }
        }

        private void btnnuevo_Click(object sender, EventArgs e)
        {
             txtnombre.Text = ""; ;
            txtapellidos.Text = "";
            cbocarro.SelectedIndex = 0;
            txtprecio.Text = "";
            txtcantidad.Text = "";
            txttotal.Text = "";
            txtnombre.Focus();
        }

        private void lstautomovil_SelectedIndexChanged(object sender, EventArgs e)
        {
            txtprecio.Focus();
        }

        private void btncalcular_Click(object sender, EventArgs e)
        {
            Double yprecio = Double.Parse(txtprecio.Text);
            Double ycantidad = Double.Parse(txtcantidad.Text);
            Double ytotal = objcalculo.subtotal(yprecio, ycantidad);
            txttotal.Text=ytotal.ToString();

            Double yigv = objcalculo.IGV(ytotal);
            txtigv.Text = yigv.ToString();
            Double ysumatot = objcalculo.total(ytotal, yigv);
            txtsuma.Text = ysumatot.ToString();
        }

        private void btnsalir_Click(object sender, EventArgs e)
        {
            this.Dispose();
            this.Close();
        }

        private void btnagregar_Click(object sender, EventArgs e)
        {
              String ynombre = (txtnombre.Text.ToUpper());
            String yapellidos = (txtapellidos.Text.ToUpper());
            String yautomovil = (cbocarro.SelectedItem.ToString());
            String yprecio = (txtprecio.Text.ToUpper());
            String ycantidad = (txtcantidad.Text.ToUpper());
            String ysubtotal = (txttotal.Text.ToUpper());
            String yigv = (txtigv.Text.ToUpper());
            String ytotal = (txtsuma.Text.ToUpper());
            dgvlista.Rows.Add(ynombre, yapellidos, yautomovil, yprecio, ycantidad, ysubtotal, yigv, ytotal);
         
        }

        }
        }
EXPLICACIÓN DEL EJERCICIO:
ustedes se preguntaran que es lo que se  quiere lograr con el ejercicio :

 Este ejercicio lo que nos quiere decir es: Que nosotros lo que vamos a realizar por ejemplo es que nosotros a ingresar un nombre su apellido que automóvil quiere comprar y en una lista vamos a mostrar todas sus características   del automóvil que quiere el cliente comprar  y  también se ingresa el precio y la cantidad  y se calcula el subtotal  ya para terminar se calcula el IGV y suma mas el total para asi hallar  la suma total y para ya terminar se le agrega a una basedata.


GRACIAS:

miércoles, 1 de junio de 2016

MI BLOG PERSONAL

BIOGRAFIA

  PRIMERAMENTE AGRADECER A TODOS USTEDES  POR TODO SU APOYO  INCONDICIONAL  MUCHAS GRACIAS BUENO YO VENGO  DE LA REGION DE HUANUCO -PROVINCIA DE HUANUCO - DISTRITO CHINCHAO ACOMAYO -CASERIO DE VILLA SOL , MIS  PADRES SON : MARTIN CUELLAR RUFINO   BUENO MI MADRE LO PERDI CUANDO ESTABA RECIEN NACIDO  Y DE AHI SOLO CRECI CON MI PADRE  , TENGO DOS HERMANOS  UNA QUE SE LLAMA  YOSELIN CUELLAR RUFINO  Y LA OTRA QUE SE LLAMA MISHEL, BUENO YO ESTUDIE MI PRIMARIA EN LA ESCUELA DE UN CASERIO  DE COCHAS CHICO  N° 32860 Y MI SECUNDARIA ESTUDIE EN EL DISTRITO DE  ACOMAYO EN EL COLEGIO DE:  NUESTRA SEÑORA DE LOURDES .
BUENO YO  ACTUALMENTE  VIVO CON MIS TIOS  Y QUIERO AGRADECER A ELLOS POR TODO SU APOYO  Y TAMBIEN  AGRADECER A DIOS POR TODO LO QUE NOS A DIARIO POR QUE SIN EL NO SOMOS NADA  Y ESO ES TODO  MUCHAS GRACIAS.

" TODO LO PUEDO EN CRISTO FILIPENSES 4:13"
















BARCELONA HASTA LA MUERTE}





lunes, 30 de mayo de 2016