Pregon de Inicio de Fiestas 2018

El colegio Dr. Camilo Gallegos Domínguez se hizo presente en el Pregon de Fiestas por los 63 años de cantonización de Arenillas.

lunes, 23 de octubre de 2017

ACTIVAR Y DESACTIVAR BOTONES

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

HAGA CLICK AQUI PARA VER LOS EJERCIC...

miércoles, 11 de octubre de 2017

INTERFACE DE UN FORMULARIO USUARIO

HAga click aqui para ver el vi...

martes, 10 de octubre de 2017

EJERCICIOS EN DEV C++ PARTE # 1

HAGA CLICK PARA VISUALIZAR LOS EJERCIC...

martes, 3 de octubre de 2017

TABLA DE MULTIPLICAR

#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 */    ...