miércoles, 20 de diciembre de 2017
Eliminador de Virus en los USB y Computador
diciembre 20, 2017
No comments
Haga click aquì para Descargar el Eliminador de Vìr...
jueves, 7 de diciembre de 2017
miércoles, 6 de diciembre de 2017
TAREA DE WORD - PRIMERO Y SEGUNDO INFORMATICA A Y B
diciembre 06, 2017
1 comment
HAGA CLICK PARA VER LA TA...
ATAJOS DEL TECLADO PARA MICROSOFT WORD 2013
diciembre 06, 2017
1 comment
F7
Revisar ortografía y gramática
CTRL+E
Seleccionar todo el texto
CTRL+N
Aplicar negrita al texto seleccionado o activar negrita
CTRL+K
Aplicar cursiva al texto seleccionado o activar cursiva
CTRL+S
Aplicar subrayado al texto seleccionado o Guardar
CTRL+C
Copiar
CTRL+X
Cortar
CTRL+V
Pegar
CTRL+Z
Deshacer última acción
CTRL+Y
Rehacer última acción
CTRL+U
Crear un nuevo documento
CTRL+A
Abrir un documento
CTRL+R
Cerrar...
ATAJOS DEL TECLADO DE GOOGLE CHROME
diciembre 06, 2017
No comments
Ctrl + N: Abrir ventana nueva.
Ctrl + Mayús + N: Abrir ventana nueva en modo incógnito.
Ctrl + T: Abrir pestaña nueva e ir a ella.
Ctrl + Mayús + T: Reabrir una pestaña recién cerrada e ir a ella.
Ctrl + Tab o Ctrl + AvPág: Ir a pestaña siguiente.
Ctrl + Mayús + Tab o Ctrl + RePág: Ir a pestaña anterior.
Ctrl + 1 a 8: Ir a pestaña específica.
Ctrl + 9: Ir a última pestaña.
Alt + Inicio: Abrir página de inicio...
miércoles, 15 de noviembre de 2017
CASOS DE TIFOIDEA EN DEV C++
noviembre 15, 2017
1 comment
/*suma de casos de tifoidea*/
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include<windows.h>
void gotoxy(int x,int y)
{
HANDLE hcon;
hcon = GetStdHandle(STD_OUTPUT_HANDLE);
COORD dwPos;
dwPos.X = x;
dwPos.Y= y;
SetConsoleCursorPosition(hcon,dwPos);
}
void...
lunes, 23 de octubre de 2017
ACTIVAR Y DESACTIVAR BOTONES
octubre 23, 2017
No comments
Sub deshabilitar() Principio.Enabled = False Anterior.Enabled = False Siguiente.Enabled = False Ultimo.Enabled = False Nuevo.Enabled = False Guardar.Enabled = True Cancelar.Enabled = True Eliminar.Enabled = False ...
martes, 17 de octubre de 2017
EJERCICIOS DE LENGUAJE C++ PARTE 2
octubre 17, 2017
No comments
HAGA CLICK AQUI PARA VER LOS EJERCIC...
miércoles, 11 de octubre de 2017
martes, 10 de octubre de 2017
EJERCICIOS EN DEV C++ PARTE # 1
octubre 10, 2017
No comments
HAGA CLICK PARA VISUALIZAR LOS EJERCIC...
martes, 3 de octubre de 2017
TABLA DE MULTIPLICAR
octubre 03, 2017
No comments
#include <stdio.h>
int main()
{
char seguir;
int i, numero;
do
{
printf( "\n Introduzca un n%cmero entero: ", 163 );
scanf( "%d", &numero );
printf( "\n La tabla de multiplicar del %d es:\n", numero );
/* Inicio del anidamiento */
...
miércoles, 27 de septiembre de 2017
CAJERO AUTOMATICO CON COLOR Y GOTOXY EN DEV C++
septiembre 27, 2017
No comments
/* Programa: perimta presentar un menu de un cajero de un banco (Solución 1) */
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include<windows.h>
void gotoxy(int x,int y)
{
HANDLE hcon;
hcon = GetStdHandle(STD_OUTPUT_HANDLE);
COORD dwPos;
dwPos.X = x;
dwPos.Y= y;
...