You are on page 1of 1

Calcular salario

 Horas trabajadas
 Pago por hora
 Salario bruto
 Descuento
 Salatio total

horas pagoxhora bruto descuento total Mensaje


20 1000 2000 200 1800 Sigue
adelante
10 50 500 50 450 No te
desanimes

Public Class Form1

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles Button2.Click
txtSB.Text = Int(txtHT.Text) * Int(txtPH.Text)
txtD.Text = Int(txtSB.Text) * 0.1
txtST.Text = Int(txtSB.Text) - Int(txtD.Text)
If (Int(txtST.Text) >= 1800) Then
MsgBox("Sigue Adelante")
Else
MsgBox("No te desanimes")

End If
End Sub
End Class

You might also like