If you want to limit the characters entered into a field, you can use the control's keypress event:
Private Sub Text0_KeyPress(KeyAscii As Integer)
If Not ValidChr(KeyAscii, Me.Text0, 20, enumPhoneNumber) Then KeyAscii = 0
End Sub
KeyAscii - the integer from the keypress event
ctl - a...