Que yo sepa, no es posible controlarlo en la interfaz.
Podrías intentar quitar los caracteres inválidos en el código con algo de este estilo:
B4X:
Sub textbox1_TextChanged (Old As String, New As String)
Dim validChars As String ="ABCDEFGHIJKLMNÑOPQRSTUVWXYZabcdefghijklmnñopqrstuvwxyz0123456789"
Try
If validChars.Contains(New.SubString(New.Length-1)) = False Then
textbox1.Text = New.SubString2(0, New.Length-1)
textbox1.SelectionStart = textbox1.Text.Length
End If
Catch
Log(LastException)
End Try
End Sub
Hay que tener en cuenta que en el validChars habrá que incluir también todas las combinaciones de acentos que deben ser aceptados
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.