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.

viernes, 27 de enero de 2017

GENERAR CÓDIGO EN ESTUDIANTES EN VB .NET


  1. REVISAR LA TABLA ESTUDIANTES Y VERIFICAR QUE EL CAMPO COD_EST TENGA EL TAMAÑO DE 9 EN SU CAMPO. (OJO QUITAR LAS RELACIONES PARA PODER MODIFICAR)
  2. REVISAR EN EL DATASET LA TABLA ESTUDIANTES Y AGREGAR "ORDER BY COD_EST"
  3. BOTÓN NUEVO


Private Sub Nuevo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Nuevo.Click
        deshabilitar()
        Dim cod As Integer
        ASIGCURPARBindingSource.MoveLast()
        cod = Cod_asig_cpTextBox.Text
        cod = (CInt(cod) + 1)
        ASIGCURPARBindingSource.AddNew()
        Cod_asig_cpTextBox.Text = cod.ToString("000000000")
        Cod_asig_cpTextBox.Focus()
    End Sub

jueves, 26 de enero de 2017

TAREA EN BLOGGER

1.- Colocar un menú principal en Blogger con las siguientes paginas:

  • DATOS PERSONALES
  • MI MÚSICA PREFERIDA
  • MI CANTANTE PREFERIDO
  • MI PELÍCULA PREFERIDA
  • MI LIBRO PREFERIDO
  • MI DEPORTE PREFERIDO
  • MI MATERIAS PREFERIDA
  • GALERÍA DE FOTOS Y VIDEOS 
Ejemplo:



miércoles, 25 de enero de 2017

RUTA BD ACCESS

Imports System.Data.OleDb
Public Class Docentes
    Dim connString As String = ("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" _
                             & "G:\MENU\BDDECE.mdb" & ";Persist Security Info=False;") 'CAMBIA LA RUTA
    Dim Conexión As OleDbConnection = New OleDbConnection


miércoles, 18 de enero de 2017

CREAR UN REPORTE EN VB .NET