Use this, its very simple.
If txtPrice.Text.StartWith(".") Or Char.IsLetter(txtPrice.Text) Then
' The entered values are not allowed here, either a user entered a "." Or a user entered a letter from (a-z)
Else
' The user entered allowed values here
End if
This is very simple. Hope this helps you.