I have a Number UpDown box that everytime I type in..say 800 when I leave that box and click another it won't display 800.00
It just stays 800 even though I have decimal place properties set on 2.
I want users to type in 800 and when they hit on another box for it to display 800.00
I tried this but it didn't work:
Private Sub nudAmount_LostFocus()
nudAmount.Text = Format(nudAmount.Text, ".00")
End Sub
