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.

Grupo de Danza Camilino

Conformado por estudiantes de Décimo año de Educación Superior.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

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
        Modificar.Enabled = False
        Buscarnom.Enabled = False
        Buscarced.Enabled = False
        Actualizar.Enabled = False
        Salir.Enabled = False
        '*************
        Cod_estTextEdit.Enabled = True
        CedulaTextEdit.Enabled = True
        Apenom_estTextEdit.Enabled = True
        Prov_nacComboEdit.Enabled = True
        Cant_nacComboEdit.Enabled = True
        Parr_nacComboEdit.Enabled = True
        Fecha_nacDateTimeEdit.Enabled = True
        Prov_resComboEdit.Enabled = True
        Cant_resComboEdit.Enabled = True
        Parr_resComboEdit.Enabled = True
        Barr_ciudTextEdit.Enabled = True
        Calle_prinTextEdit.Enabled = True
        Calle_secTextEdit.Enabled = True
        ReferenciaTextEdit.Enabled = True
        Tel_convTextEdit.Enabled = True
        Tel_celTextEdit.Enabled = True
        Corr_electTextEdit.Enabled = True
        Tipo_sangTextEdit.Enabled = True
        GeneroComboEdit.Enabled = True
        Est_civilComboEdit.Enabled = True
        ReligionComboEdit.Enabled = True
        Coleg_procedenciaTextEdit.Enabled = True
        Gru_etnComboBox.Enabled = True
        NacionalidadTextEdit.Enabled = True
        PesoTextEdit.Enabled = True
        OcupacionTextEdit.Enabled = True
        EstaturaTextEdit.Enabled = True
        Lug_trabTextEdit.Enabled = True
        FotoPicturefoto.Enabled = True
    End Sub


    Sub habilitar()
        Principio.Enabled = True
        Anterior.Enabled = True
        Siguiente.Enabled = True
        Ultimo.Enabled = True
        Nuevo.Enabled = True
        Guardar.Enabled = False
        Cancelar.Enabled = False
        Eliminar.Enabled = True
        Modificar.Enabled = True
        Buscarnom.Enabled = True
        Buscarced.Enabled = True
        Actualizar.Enabled = True
        Salir.Enabled = True
        '*************
        Cod_estTextEdit.Enabled = False
        CedulaTextEdit.Enabled = False
        Apenom_estTextEdit.Enabled = False
        Prov_nacComboEdit.Enabled = False
        Cant_nacComboEdit.Enabled = False
        Parr_nacComboEdit.Enabled = False
        Fecha_nacDateTimeEdit.Enabled = False
        Prov_resComboEdit.Enabled = False
        Cant_resComboEdit.Enabled = False
        Parr_resComboEdit.Enabled = False
        Barr_ciudTextEdit.Enabled = False
        Calle_prinTextEdit.Enabled = False
        Calle_secTextEdit.Enabled = False
        ReferenciaTextEdit.Enabled = False
        Tel_convTextEdit.Enabled = False
        Tel_celTextEdit.Enabled = False
        Corr_electTextEdit.Enabled = False
        Tipo_sangTextEdit.Enabled = False
        GeneroComboEdit.Enabled = False
        Est_civilComboEdit.Enabled = False
        ReligionComboEdit.Enabled = False
        Coleg_procedenciaTextEdit.Enabled = False
        Gru_etnCombobox.Enabled = False
        NacionalidadTextEdit.Enabled = False
        PesoTextEdit.Enabled = False
        OcupacionTextEdit.Enabled = False
        EstaturaTextEdit.Enabled = False
        Lug_trabTextEdit.Enabled = False
        FotoPicturefoto.Enabled = False
    End Sub

martes, 17 de octubre de 2017

EJERCICIOS DE LENGUAJE C++ PARTE 2

miércoles, 11 de octubre de 2017

INTERFACE DE UN FORMULARIO USUARIO

martes, 10 de octubre de 2017

EJERCICIOS EN DEV C++ PARTE # 1

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

        for ( i = 1 ; i <= 10 ; i++ )
            printf( "\n   %d * %d = %d", i, numero, i * numero );

        /* Fin del anidamiento */

        printf( "\n\n   %cDesea ver otra tabla (s/n)?: ", 168 );
        fflush( stdin );
        scanf( "%c", &seguir );

    } while ( seguir != 'n' );

    return 0;
}