You are on page 1of 13

SISTEMA DE FACTURACIN

PROYECTO DE VISUAL BASIC N

Docente expositor: Lic. Jaime A. Flores Fuentes

Private Sub Form_Load() Form1.Show Text1.SetFocus End Sub

Private Sub Command1_Click()


Dim clave As String clave = "soyer If Text1.Text = clave Then MsgBox ("Bienvenido al sistema") Form2.Show Form1.Hide Else MsgBox ("Error, vuelva a ingresar clave") Text1.Text = "" Text1.SetFocus End If

End Sub

Private Sub Command1_Click()


End

End Sub

Al hacer clic en calcular se deber hallar. Monto de hospedaje: Das de hospedaje * Pago Da El pago da ser de S/. 50 (Turista) S/. 70 (Embassy) Monto Servicios: Ser de S/. 20 por cada servicio Monto total: Monto de Hospedaje + Monto del Servicio IGV: 18% del Monto Total Total a Pagar: Monto total + IGV

Private Sub Command1_Click()


Dim dias As Integer, costo As Integer, cable As Integer, telefono As Integer, bar As Integer, hospedaje As Integer, servicio As Integer, total As Integer, igv As Integer, netos As Integer dias = Val(Text2.Text) If Option1.Value = True Then costo = 50 If Option2.Value = True Then costo = 70 hospedaje = costo * dias Text3.Text = Str(hospedaje) If Check1.Value = vbChecked Then cable = 20 If Check2.Value = vbChecked Then telefono = 20 If Check3.Value = vbChecked Then bar = 20 servicio = cable + telefono + bar Text4.Text = Str(servicio) total = hospedaje + servicio Text5.Text = Str(total) igv = 0.18 * total Text6.Text = Str(igv) neto = total + igv Text7.Text = Str(neto)

End Sub

Private Sub Command1_Click() Text1.Text = "" Text2.Text = "" Text3.Text = "" Text4.Text = "" Text5.Text = "" Text6.Text = "" Text7.Text = "" Text1.SetFocus End Sub

Private Sub Command1_Click()


Form3.Show

End Sub

Private Sub Command1_Click()


Dim res As Integer res = MsgBox("Desea salir del sistema?", 4 + 32 + 256, "Salir") If res = 6 Then End Else Cancel = True End If

End Sub

Private Sub Command1_Click() Form2.Show Form3.Hide End Sub

You might also like