символы, как так сделать.

Sub Text1_KeyPress(KeyAscii As Integer)
If (KeyAscii < Asc("A")) Or (KeyAscii > Asc("Z") And KeyAscii < Asc("a")) Or KeyAscii > Asc("z") Then KeyAscii = 0
End Sub
Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii >= Asc("А") Then KeyAscii = 0
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If IsNumeric(chr(KeyAscii)) Then KeyAscii = 0
End Sub
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 23