Thank you all very much,

After reading all of your feedback, I ended up desingning this code:

Private Sub txtOwners_KeyPress(KeyAscii As Integer)

If Not (KeyAscii = 32) And Not (KeyAscii = 8) And Not (Chr(KeyAscii) >= "A" And Chr(KeyAscii) <= "z") Then
KeyAscii = 0
End If
End Sub


Worked Perfectly!
Thank you for all the great feedback Guys.
Daniel Christie

PS.(for give me if this cut-n-paste looks unformatted, but you know what I mean)