Realizar un video de entre 30 segundos y 1 minuto. Pueden aparecer los autores. Las imágenes deben ser tomadas de YouTube.

Debe relatar:

- Lo mas divertido (escolar) del año
- Lo mas aburrido (escolar) del año
- Lo mas dificil de TIC y en general (un tema, una clase, un proyecto)
- Lo mas interesante de TIC y en general (un tema, una clase, un proyecto)

No hacer nombres, solo mencionar materias. Publicarlo en YouTube y en el Campus (despues vemos como)

Wednesday, September 10, 2008

Visual Basic 2 (por Bri)

Private Sub CATV_Click()
TVCATV.Caption = "CATV"
End Sub
Private Sub catvtv_Click()
If TVCATV.Caption = "TV" Then
TVCATV.Caption = "CATV"
Else
TVCATV.Caption = "TV"
End If
End Sub
Private Sub cero_Click()
auxiliar.Caption = auxiliar.Caption + "0"
End Sub
Private Sub cinco_Click()
auxiliar.Caption = auxiliar.Caption + "5"
End Sub
Private Sub cuatro_Click()
auxiliar.Caption = auxiliar.Caption + "4"
End Sub
Private Sub dos_Click()
auxiliar.Caption = auxiliar.Caption + "2"
End Sub
Private Sub ENTER_Click()
If auxiliar.Caption < 120 Then

NUMEROCANAL.Caption = auxiliar.Caption
auxiliar.Caption = ""
Else
auxiliar.Caption = ""
End If
End Sub
Private Sub masbrillo_Click()
Pantalla.Top = Pantalla.Top + 100
End Sub
Private Sub mascanal_Click()
If TVCATV.Caption = "CATV" Then
If NUMEROCANAL.Caption < 120 Then
NUMEROCANAL.Caption = NUMEROCANAL.Caption + 1
Else
NUMEROCANAL.Caption = 0
End If
Else
If NUMEROCANAL.Caption < 13 Then
NUMEROCANAL.Caption = NUMEROCANAL.Caption + 1
Else
NUMEROCANAL.Caption = 0
End If
End If
End Sub
Private Sub masvolumen_Click()
Pantalla.Left = Pantalla.Left + 100
End Sub
Private Sub menosbrillo_Click()
Pantalla.Top = Pantalla.Top - 100
End Sub
Private Sub menoscanal_Click()
If TVCATV.Caption = "CATV" Then
If NUMEROCANAL.Caption > 0 Then
NUMEROCANAL.Caption = NUMEROCANAL.Caption - 1
Else
NUMEROCANAL.Caption = 120
End If
Else
If NUMEROCANAL.Caption > 0 Then
NUMEROCANAL.Caption = NUMEROCANAL.Caption - 1
Else
NUMEROCANAL.Caption = 13
End If
End If
End Sub
Private Sub menosvolumen_Click()
Pantalla.Left = Pantalla.Left - 100
End Sub
Private Sub nueve_Click()
auxiliar.Caption = auxiliar.Caption + "9"
End Sub
Private Sub ocho_Click()
auxiliar.Caption = auxiliar.Caption + "8"
End Sub
Private Sub OFF_Click()
auxiliar.Caption = ""
NUMEROCANAL.Caption = ""
TVCATV.Caption = ""
ONOFF.BackColor = vbBlack
uno.Enabled = False
dos.Enabled = False
tres.Enabled = False
cuatro.Enabled = False
cinco.Enabled = False
seis.Enabled = False
siete.Enabled = False
ocho.Enabled = False
nueve.Enabled = False
cero.Enabled = False
TV.Enabled = False
CATV.Enabled = False
End Sub
Private Sub offon_Click()
If ONOFF.BackColor = vbRed Then
ONOFF.BackColor = vbBlack
auxiliar.Caption = ""
TVCATV.Caption = ""
NUMEROCANAL.Caption = ""
uno.Enabled = False
dos.Enabled = False
tres.Enabled = False
cuatro.Enabled = False
cinco.Enabled = False
seis.Enabled = False
siete.Enabled = False
ocho.Enabled = False
nueve.Enabled = False
cero.Enabled = False
mascanal.Enabled = False
menoscanal.Enabled = False
masbrillo.Enabled = False
menosbrillo.Enabled = False
masvolumen.Enabled = False
menosvolumen.Enabled = False
catvtv.Enabled = False
ENTER.Enabled = False
Else
ONOFF.BackColor = vbRed
auxiliar.Caption = ""
TVCATV.Caption = "TV"
NUMEROCANAL.Caption = "0"
uno.Enabled = True
dos.Enabled = True
tres.Enabled = True
cuatro.Enabled = True
cinco.Enabled = True
seis.Enabled = True
siete.Enabled = True
ocho.Enabled = True
nueve.Enabled = True
cero.Enabled = True
mascanal.Enabled = True
menoscanal.Enabled = True
masbrillo.Enabled = True
menosbrillo.Enabled = True
masvolumen.Enabled = True
menosvolumen.Enabled = True
catvtv.Enabled = True
ENTER.Enabled = True
End If

End Sub
Private Sub ON_Click()
NUMEROCANAL.Caption = "0"
TVCATV.Caption = "TV"
ONOFF.BackColor = vbRed
uno.Enabled = True
dos.Enabled = True
tres.Enabled = True
cuatro.Enabled = True
cinco.Enabled = True
seis.Enabled = True
siete.Enabled = True
ocho.Enabled = True
nueve.Enabled = True
cero.Enabled = True
End Sub
Private Sub seis_Click()
auxiliar.Caption = auxiliar.Caption + "6"
End Sub
Private Sub siete_Click()
auxiliar.Caption = auxiliar.Caption + "7"
End Sub
Private Sub tres_Click()
auxiliar.Caption = auxiliar.Caption + "3"
End Sub
Private Sub TV_Click()
TVCATV.Caption = "TV"
End Sub
Private Sub uno_Click()
auxiliar.Caption = auxiliar.Caption + "1"
End Sub

No comments: