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.

jueves, 25 de agosto de 2016

NEGRITA, CURSIVA, SUBRAYADO Y DOBLE SUBRAYADO.

Sub cambiarestilo(ByVal estiloselec As FontStyle)

        Dim estilo As FontStyle = RichTextBox1.SelectionFont.Style

        If estiloselec = FontStyle.Bold Then

            If RichTextBox1.SelectionFont.Bold = False Then
                estilo += FontStyle.Bold
            Else
                estilo -= FontStyle.Bold
            End If

        ElseIf estiloselec = FontStyle.Italic Then

            If RichTextBox1.SelectionFont.Italic = False Then
                estilo += FontStyle.Italic
            Else
                estilo -= FontStyle.Italic
            End If

        ElseIf estiloselec = FontStyle.Underline Then

            If RichTextBox1.SelectionFont.Underline = False Then
                estilo += FontStyle.Underline
            Else
                estilo -= FontStyle.Underline
            End If

        ElseIf estiloselec = FontStyle.Strikeout Then

            If RichTextBox1.SelectionFont.Strikeout = False Then
                estilo += FontStyle.Strikeout
            Else
                estilo -= FontStyle.Strikeout
            End If

        End If

        RichTextBox1.SelectionFont = New Font(RichTextBox1.SelectionFont, estilo)

    End Sub

--------------------------------------

En cada Botón

cambiarestilo(FontStyle.Bold)
cambiarestilo(FontStyle.Italic)
cambiarestilo(FontStyle.Underline)
cambiarestilo(FontStyle.Strikeout)


miércoles, 24 de agosto de 2016

Video de un Editor

https://www.youtube.com/watch?v=EIbL-SkMqx0

lunes, 22 de agosto de 2016

CODIFICACIÓN DE COMBOBOX FUENTE


Imports System.Drawing.Text
Imports System.IO
Public Class Form1
    Private Sub CarregarFont()
        If My.Computer.FileSystem.FileExists(Application.StartupPath & "\font.txt") = False Then
            Dim fi As New System.IO.StreamWriter(Application.StartupPath & "\font.txt")
            Dim family As FontFamily
            For Each family In FontFamily.Families
                If family.IsStyleAvailable(FontStyle.Bold) = False Then Exit For
                fi.WriteLine(family.Name)
            Next family
            fi.Close()
        End If
        '-------------------------------------------------------------------------------------------/
        Dim linha As New StreamReader(Application.StartupPath & "\font.txt")
        Do While Not linha.EndOfStream
            txtFont.Items.Add(linha.ReadLine)
        Loop
        linha.Close()
    End Sub

    Private Sub txtSize_ValueChanged(ByVal sender As Object, ByVal e As EventArgs) Handles txtSize.ValueChanged
        Dim f As New Font(RichTextBox1.SelectionFont.FontFamily, txtSize.Value)
        RichTextBox1.SelectionFont = f
    End Sub
    Private Sub txtFont_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Handles txtFont.SelectedIndexChanged
        Dim f As New Font(txtFont.Text, RichTextBox1.SelectionFont.Size)
        RichTextBox1.SelectionFont = f
    End Sub

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

lunes, 15 de agosto de 2016

CODIGO DEL EDITOR DE TEXTOS

Les dejo aqui los codigos:

Abrir:
Dim Open As New OpenFileDialog()
Dim myStreamReader As System.IO.StreamReader
Open.Filter = "Text [*.txt*]|*.txt|All Files [*,*]|*,*"
Open.CheckFileExists = True
Open.Title = "Abrir Archivo"
Open.ShowDialog(Me)
Try
Open.OpenFile()
myStreamReader = System.IO.File.OpenText(Open.FileName)
document.Text = myStreamReader.ReadToEnd()
Catch ex As Exception

End Try

Guardar:
Dim Save As New SaveFileDialog()
Dim myStreamWriter As System.IO.StreamWriter
Save.Filter = "Text (*.txt)|*.txt|HTML(*.html*)|*.html|PHP(*.php*)|*.php*|All files(*.*)|*.*"
Save.CheckPathExists = True
Save.Title = "Guardar como"
Save.ShowDialog(Me)
Try
myStreamWriter = System.IO.File.AppendText(Save.FileName)
myStreamWriter.Write(document.text)
myStreamWriter.Flush()
Catch ex As Exception

End Try

Copiar: document.copy()
Cortar: document.Cut()
Pegar: document.Paste()
Undo: document.Undo()
Redo: document.Redo()

Fuente:
Try Dim dlg As FontDialog = New FontDialog dlg.Font = document.font If dlg.showdialog = System.Windows.Forms.DialogResult.OK Then document.Font = dlg.Font End If
Catch ex As Exception: End Try

Color:
Try Dim dlg As ColorDialog = New ColorDialog dlg.Color = document.Forecolor If dlg.ShowDialog = System.Windows.Forms.DialogResult.Ok Then document.Forecolor = dlg.Color End If
Catch ex As Exception

End Try



Otro código

Los codigos son:

Nuevo:
document.Clear

Abrir:
Dim open As New OpenFileDialog Dim myStreamReader As System.IO.StreamReader open.Filter = "Text[*.txt*]|*.txt|All Files [*.*]|*.*" open.CheckFileExists = True open.Title = "Abrir Archivo" open.ShowDialog(Me) Try open.OpenFile() myStreamReader = System.IO.File.OpenText(open.FileName) document.Text = myStreamReader.ReadToEnd Catch ex As Exception End Try

Guardar Como:
Dim save As New SaveFileDialog Dim myStreamWriter As System.IO.StreamWriter save.Filter = "Text (*.txt)|*.txt|HTML(*.html*)|*.html|PHP(*.php*)|*.php*|All Files(*.*)|*.*" save.CheckPathExists = True save.Title = "Guardar Como" save.ShowDialog(Me) Try myStreamWriter = System.IO.File.AppendText(save.FileName) myStreamWriter.Write(document.Text) myStreamWriter.Flush() Catch ex As Exception End Try

Salir:
End

Deshacer:
document.Undo

Rehacer:
document.Redo

Copiar:
document.Copy

Pegar:
document.Paste

Cortar:
document.Cut

Seleccionar Todo:
document.SelectAll

Limpiar Texto:
document.Clear

Fuente:
Try Dim dlg As FontDialog = New FontDialog dlg.Font = document.Font If dlg.ShowDialog = System.Windows.Forms.DialogResult.OK Then document.Font = dlg.Font End If Catch ex As Exception End Try

Color de Fuente:
Try Dim dlg As ColorDialog = New ColorDialog dlg.Color = document.ForeColor If dlg.ShowDialog = System.Windows.Forms.DialogResult.OK Then document.ForeColor = dlg.Color End If Catch ex As Exception End Try

Color de Fondo:
Try Dim dlg As ColorDialog = New ColorDialog dlg.Color = document.BackColor If dlg.ShowDialog = System.Windows.Forms.DialogResult.OK Then document.BackColor = dlg.Color End If Catch ex As Exception End Try



viernes, 15 de julio de 2016

MENU PRINCIPAL CON RIBBON EN VISUAL BASIC .NET

miércoles, 13 de julio de 2016

VIDEO EJEMPLO DE NORMALIZACION


lunes, 4 de julio de 2016

USUARIO, CONTRASEÑA Y MENÚ PRINCIPAL EN VISUAL BASIC .NET 2010

USUARIO Y CONTRASEÑA




MENU PRINCIPAL


jueves, 30 de junio de 2016

Características de Windows 10


miércoles, 15 de junio de 2016

EVALUACIÓN DEL PRIMER PARCIAL - TERCERO INFORMATICA

martes, 14 de junio de 2016

10/6/16

viernes, 10 de junio de 2016

miércoles, 8 de junio de 2016

HERRAMIENTAS CASE - BASES DE DATOS

jueves, 2 de junio de 2016

viernes, 13 de mayo de 2016

FORMAS DE RESPALDAR LA INFORMACION

     CUANDO EL SISTEMA OPERATIVO SE ENCUENTRE LLENO DE VIRUS, LENTO Y LAS APLICACIONES DEMORAN EN CARGAR O EJECUTAR.

  • Primeramente creamos una carpeta en el escritorio llamado RESPALDOS o si tuviéramos unidad D, hiciéramos lo mismo.
  • Copiamos a la Carpeta RESPALDOS todos los documentos de Word, Excel, Powerpoint, etc que el cliente considere importantes.
  • Luego de respaldar la información, procedemos para reiniciar el computador e insertar el CD o pendrive de Instalación del Sistema Operativo que desee instalar. Ejm: Windows xp, 7, 8 o 10.

  CUANDO EL SISTEMA OPERATIVO NO ARRANQUE Y EL COMPUTADOR ESTE COLGADO.
  • Insertamos el CD o pendrive MULTIBOOT con el programa Hiren’s Boot.
  • Antes de que se inicie el Sistema Operativo presionamos la tecla F9 (La tecla de función de Booteo depende de la marca de computador que usted tenga, observe al momento de encender el computador y dese cuanta de la tecla a utilizar).
  • Procedemos a realizar un click en Hiren's Boot CD y ejecutarlo.
  • Nos encontraremos con varias opciones para reparar dispositivos tales como Disco duro, Booteo, recuperación de archivos, etc, pero la opcion principal para respaldar la información es presionar Enter en MINI XP.
  • Esperamos que inicie nuestro MINI XP desde el Pendrive o CD del Hiren's Boot con la finalidad de que podamos tener acceso a los archivos o documentos que necesitemos respaldar, en vista a que no tenemos acceso al sistema operativo del computador.
  • Buscamos dentro de las unidades de almacenamiento la información que necesitemos la copiamos en una carpeta llamada RESPALDO y luego la copiamos a nuestro pendrive.

jueves, 12 de mayo de 2016

INSTALANDO WINDOWS 7 Y OFFICE 2010