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, 31 de octubre de 2016

67 FORMULAS AVANZADAS PARA PRACTICAS

FORMULAS PARA PRACTICAR

jueves, 13 de octubre de 2016

CONEXION DE BD DENTRO DE UN PROYECTO

CREAR UN MODULO DENTRO DEL PROYECTO 

Imports System.Data.OleDb

Module funcionesDb

    ' CREAR CONEXION

    Private ConecBD As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;" & _
                                         "Data Source=BDInventario.accdb;")
    Public Sub Conectarse()
        Try
            ConecBD.Open()
            MsgBox("Conexion exitosa")
        Catch ex As Exception
            MsgBox("Conexion fallida")
        End Try
    End Sub


End Module

CÓDIGO EN EL FORMULARIO

 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Conectarse()
    End Sub

lunes, 10 de octubre de 2016

PRACTICAS DE EXCEL BASICO