PERMITIR TEXBOX SOMENTE TEXTO
Ola queria saber o seguinte code:
Caso texbox1 ponha um numero nao seja permitido ou seja nao tem jeito de colocar numero
mas caso check um checkbox permita tipo isso:
[txt-size=1] [/txt-size] Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
If (Asc(e.KeyChar) >= 48 And Asc(e.KeyChar) <= 57) Then
e.Handled = True
e = Nothing
End If
If CheckBox1.Checked Then
If (Asc(e.KeyChar) >= 57 And Asc(e.KeyChar) <= 58) Then
e.Handled = True
e = Nothing
End If
End If
End Sub
Caso texbox1 ponha um numero nao seja permitido ou seja nao tem jeito de colocar numero
mas caso check um checkbox permita tipo isso:
[txt-size=1] [/txt-size] Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
If (Asc(e.KeyChar) >= 48 And Asc(e.KeyChar) <= 57) Then
e.Handled = True
e = Nothing
End If
If CheckBox1.Checked Then
If (Asc(e.KeyChar) >= 57 And Asc(e.KeyChar) <= 58) Then
e.Handled = True
e = Nothing
End If
End If
End Sub
If CheckBox1.Checked = false Then
If (Asc(e.KeyChar) >= 48 And Asc(e.KeyChar) <= 57) Then
e.Handled = True
e = Nothing
End If
Else
If (Asc(e.KeyChar) >= 57 And Asc(e.KeyChar) <= 58) Then
e.Handled = True
e = Nothing
End If
end if
If (Asc(e.KeyChar) >= 48 And Asc(e.KeyChar) <= 57) Then
e.Handled = True
e = Nothing
End If
Else
If (Asc(e.KeyChar) >= 57 And Asc(e.KeyChar) <= 58) Then
e.Handled = True
e = Nothing
End If
end if
Tópico encerrado , respostas não são mais permitidas