Duda con TextBox

Iniciado por Lionheart12, 8 Marzo 2008, 03:14 AM

0 Miembros y 1 Visitante están viendo este tema.

Lionheart12

Esto es una duda simple... aver si me dan una mano , como hago para que en un textbox al presionar "ENTER" haga determinada funcion? por ejemplo.. enviar el texto a otro textbox. asi de simple..

** SUPER SMASH BROSS ALL STARS ** : Mi Proyecto en Sourceforge.net ! UNANSE !!

naderST

Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 13 Then
    MsgBox "Pulsaste enter"
End If
End Sub

Lionheart12

#2
Emm.. no me funciona  :huh:

Private Sub txt1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 13 Then
    MsgBox ("ooas")
End If
End Sub

Y nada.. hace el sonido parecido al "beep" y nada mas

** SUPER SMASH BROSS ALL STARS ** : Mi Proyecto en Sourceforge.net ! UNANSE !!

Sancho.Mazorka

Fijate si el nombre del control esta bien escrito en el codigo y en el control, porque a mi me funciona de 10
Osea, fijate si el control tambien se llama txt1


Sancho.Mazorka    :¬¬
Ganador Xeon Web Server ! ! !    Sancho.Mazorka :D
http://foro.elhacker.net/index.php/topic,171903.75.html



naderST

Si fijate bien en el nombre del control...

((( SPAWN )))

hola como estas, proba asi:

Private Sub Text1_KeyPress(KeyAscii As Integer)
    If KeyAscii = 13 Then
        MsgBox "Hola"
        KeyAscii = 0
    End If
End Sub

Cita de: EON + = SOLUCIÓN

Lionheart12

Ambos funcionan , me equivoque con el nombre del textbox pido disculpas  :-[
Gracias por su ayuda, salute  :-*

** SUPER SMASH BROSS ALL STARS ** : Mi Proyecto en Sourceforge.net ! UNANSE !!