hello
i need some help regarding my coding.
i want to change the number to be like this = 1.00 .
here is my coding:
Private iTotal As Decimal
Private Sub btnseringgit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnseringgit.Click
displayText.Text = "RM 1.00"
displayText.Text = iTotal
iTotal = iTotal + 1.0
End Sub