Baca Juga
Berikut adalah sample project sederhana bagaimana membuat sebuah angka dibulatkan kebawah (50) atau keatas (100).
Link Download Baru :
Anda dapat mencobanya dengan memasang dua buah textBox dalam sebuah Form, kemudian tuliskan code dibawah ini dalam jendela code :
Private Sub Text1_KeyPress(KeyAscii As Integer)
On Error Resume Next
Dim pembulatan As String
If KeyAscii = 13 Then
pembulatan = Right(Text1.Text, 2)
Text2.Text = Val(Text1.Text - Val(pembulatan))
If Val(Right(Text1.Text, 2)) >= 50 Then
Text2.Text = Val(Text2.Text) + 100
ElseIf Val(Right(Text1.Text, 2)) < 50 Then
Text2.Text = Val(Text2.Text) + 50
End If
KeyAscii = 0
End If
End Sub
Link download project :http://www.ziddu.com/download/5960402/pembulatan.zip.html
Private Sub Text1_KeyPress(KeyAscii As Integer)
On Error Resume Next
Dim pembulatan As String
If KeyAscii = 13 Then
pembulatan = Right(Text1.Text, 2)
Text2.Text = Val(Text1.Text - Val(pembulatan))
If Val(Right(Text1.Text, 2)) >= 50 Then
Text2.Text = Val(Text2.Text) + 100
ElseIf Val(Right(Text1.Text, 2)) < 50 Then
Text2.Text = Val(Text2.Text) + 50
End If
KeyAscii = 0
End If
End Sub
Link download project :
Link Download Baru :