CODIFICACION DE MATRICULA Private Sub btncalcular_Click

Anuncio
CODIFICACION DE MATRICULA
Private Sub btncalcular_Click()
lbltotal.Caption = Val (lblvalor.Caption) + Val (lblpapeleria.Caption) + Val (lblseguro.Caption)
MsgBox "El alumno " & txtnombre & " " & txtapellido & " Ha Quedado Matriculado en el Programa:" & txtprograma
& " Por un Valor de:" & lbltotal.Caption
End Sub
Private Sub btningresar_Click()
Dim i As Integer
Dim img As Object
i=4
While Hoja1.Cells(i, 1) <> Empty
i=i+1
Wend
Hoja1.Cells(i, 1) = txtcedula.Text
Hoja1.Cells(i, 2) = txtnombre.Text
Hoja1.Cells(i, 3) = txtapellidos.Text
Hoja1.Cells(i, 4) = txtedad.Text
Hoja1.Cells(i, 5) = txtprograma.Text
Hoja1.Cells(i, 6) = lblvalor
Hoja1.Cells(i, 7) = lbltotal
' Agregar la Imagen a EXCEL
If TXT_rutaI.Caption <> Empty Then
' Seleccionar la Celda para la imagen
Hoja1.Cells(i, 9).Activate
' Cambiar el tamaño de la celda
Selection.RowHeight = 35
' Agregar la Imagen al archivo de EXCEL
Set img = ActiveSheet.Pictures.Insert(TXT_rutaI.Caption)
With img
' Cambiar el tamaño de la Imagen
.Width = 35
.Height = 35
End With
Set img = Nothing
End If
CODIFICACION DE MATRICULA
Private Sub btnnuevo_Click ()
txtcedula.Text = ""
txtnombre.Text = ""
txtapellidos.Text = ""
txtedad.Text = ""
txtprograma.Text = ""
lblvalor = ""
lbltotal = ""
Image1.Picture = Nothing
End Sub
Private Sub btnsalir_Click()
Me.Hide
End Sub
Private Sub btnimagen_Click()
Dim ruta As String
' Mostrar el cuadro para buscar la imagen
ruta = Application.GetOpenFilename (Title:="Selecciona la Imagen")
If ruta <> "Falso" Then
Image1.Picture = LoadPicture(ruta)
' Guardar la ruta de la imagen para pasarla a EXCEL
TXT_rutaI.Caption = ruta
Else
Image1.Picture = Nothing
End If
End Sub
CODIFICACION DE MATRICULA
Private Sub optmanana_Click()
If optmanana = True Then
lblvalor.Caption = 980000
End If
End Sub
Private Sub optnoche_Click()
If optnoche = True Then
lblvalor.Caption = 1200000
End If
End Sub
Private Sub optsabado_Click()
If optsabado = True Then
lblvalor.Caption = 1500000
End If
End Sub
Private Sub opttarde_Click()
If opttarde = True Then
lblvalor.Caption = 780000
End If
End Sub
CODIFICACION DE MATRICULA
Private Sub chkpapeleria_Click()
If chkpapeleria = True Then
lblpapeleria.Caption = 18000
Else
lblpapeleria.Caption = 0
End If
End Sub
Private Sub chkseguro_Click()
If chkseguro = True Then
lblseguro.Caption = 1500000
Else
lblseguro.Caption = 0
End If
End Sub
Nota: se debe crear una etiqueta con el name: TXT_rutaI
Caption: Ruta de la imagen
Descargar