Cita:
Iniciado por Panchoso
hola a todos un favorsote,
como aplica el uso del ucase() ya que estoy tratando de utilizarla en los text boxs que tengo en mi aplicacion pero sin exito alguno. si alguien me puede ayudar se lo agradeceria mil.
Podrias hacerlo de dos formas
1.- por medio del evento
TextChanged
Código:
PrivateSub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
TextBox1.Text = TextBox1.Text.ToUpper
TextBox1.SelectionStart = TextBox1.Text.Length
EndSub
2.- o mas simple aun, en las propiedades del TextBox cambia la opcion
CharacterCasing a
Upper
Suerte