Está en la página 1de 2

UNIVERSIDAD ALAS PERUANAS FACULTAD DE INGENIERIA CIVIL

PRACTICA Nro. 01 ELABORAR EL SIGUIENTE PROYECTO EN VISUAL BASIC

PROCEDIMIENTO A DESARROLLAR Private Sub Command1_Click() Text4 = Format(Text2 * Text3, "##,###.##") If Option1 = True Then Text5 = Text4 * 0.12 End If If Option2 = True Then Text5 = Text4 * 0.1 End If If Option3 = True Then Text5 = Text4 * 0.06 End If If Option4 = True Then Text5 = Text4 * 0.03 End If If Option5 = True Then Text5 = 0 End If Text6 = Format(Text4 - Text5, "##,###.##") End Sub Private Sub Command2_Click() Text1 = " " Text2 = " " Text3 = " " Text4 = " " Text5 = " " Text6 = " " Text1.SetFocus Option1 = False Option2 = False Option3 = False Option4 = False Option5 = False End Sub Private Sub Command3_Click() End End Sub

También podría gustarte