Try something like this:
Private Sub Text1_Change()
Dim i as Integer
For i = 1 To Len(Text1.Text)
If IsNumeric(Mid$(Text1.Text, i, 1)) = True Then
MsgBox "No numerics allowed", vbCritical, "Invalid Character"
Text1.SetFocus
Text1.SelStart = i - 1
Text1.SelLength = 1
Exit For
End If
Next
End Sub
Swi