Posicion del Cursor en un TextBox (seleccion del contenido)

23/11/2007 - 20:19 por MemoZuniga | Informe spam
Hola Grupo

estoy en VB.net 2005,
en una winform tengo un textbox que me presenta informacion, lo que quiero
es que al tomar el focus ese textbox seleccione el contenido de este textbox,

con el fin de que el usuario no tenga que borrar y despues escribir

de antemano gracias

Preguntas similare

Leer las respuestas

#1 Morgan
24/12/2007 - 22:24 | Informe spam
Private Sub TextBox1_GotFocus(ByVal sender As Object, ByVal e As
System.EventArgs) Handles TextBox1.GotFocus
' Determine if any text is selected in the TextBox control.
If TextBox1.SelectionLength = 0 Then
' Select all text in the text box.
TextBox1.SelectAll()
End If
End Sub

aunque bastaria con

TextBox1.SelectAll()


Saludos ... Morgan 8-)
DGPPTB ... Cancún, Quintana Roo, México


"MemoZuniga" escribió en el mensaje
de noticias news:
Gracias Mauricio
sabes lo traduje asi

Private Sub txtLote_GotFocus(ByVal sender As Object, ByVal e As
System.EventArgs) Handles txtLote.GotFocus

txtLote.BackColor = Color.LightYellow
txtLote.SelectionLength = Me.txtLote.Text.Length
txtLote.SelectedText.Length.ToString()

End Sub
pero no me funciono

seguire investigando , mil gracias


"Mauricio Atanache" wrote:

Prueba esto :

this.textBox2.Focus();
this.textBox2.SelectAll();

(Debes Traducirlo a VB ;)

Cordial saludo,


Mauricio Atanache G.

"MemoZuniga" escribió en el
mensaje
de noticias:
> Hola Grupo
>
> estoy en VB.net 2005,
> en una winform tengo un textbox que me presenta informacion, lo que
> quiero
> es que al tomar el focus ese textbox seleccione el contenido de este
> textbox,
>
> con el fin de que el usuario no tenga que borrar y despues escribir
>
> de antemano gracias
>
>

email Siga el debate Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaRespuesta Tengo una respuesta
Search Busqueda sugerida