I have this code so far for one textbox:
Private Sub Pop1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Pop1.TextChanged
If String.IsNullOrEmpty(Pop1.Text) Then Pop1.Text = "0,00"
End Sub
I googled there's a need of GotFocus in Handles, but don't know how to do it. Any ideas?