LER CARACTERES DE UMA TEXTBOX

GUIMANCINE 03/11/2015 10:18:57
#453352
Tenho uma consulta que permiti digitar alguns caracteres especiais tipo (%,$,#).
Como eu faço para bloquear esses caracteres.
OMAR2011 03/11/2015 11:06:04
#453353
Resposta escolhida
Não leve mau.
Google??????????????????
PROGRAMADORVB6 03/11/2015 12:56:36
#453356
  Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress


If Not Char.IsLetter(e.KeyChar) And Not e.KeyChar = vbBack And Not e.KeyChar = [Ô].[Ô] And Not e.KeyChar = [Ô],[Ô] Then
If e.KeyChar < [Ô]0[Ô] Or e.KeyChar > [Ô]9[Ô] Then
If e.KeyChar = [Ô]#[Ô] Or e.KeyChar = [Ô]$[Ô] Or e.KeyChar = [Ô]%[Ô] Then e.Handled = True
e.Handled = True
End If
End If

End Sub
PROGRAMADORVB6 13/11/2015 11:17:22
#453854
Caro colega se a sua duvida já foi concluída feche o tópico.
Tópico encerrado , respostas não são mais permitidas