1.- tengo varios textboxs, quiero en que cada uno de ellos, al presionar la tecla enter (solo de ejmplo ya que puede ser cualquier evento) o 13(ascii) me realize alguna accion, por ejemplo de bajar al proximo text box...
Citar1.- tengo varios textboxs, quiero en que cada uno de ellos, al presionar la tecla enter (solo de ejmplo ya que puede ser cualquier evento) o 13(ascii) me realize alguna accion, por ejemplo de bajar al proximo text box...Código: TextPrivate Sub Text1_KeyPress(KeyAscii As Integer)If KeyAscii = 13 Then Text2.SetFocusEnd IfEnd Sub La segunda sino se como pueda ser.
hola la parte uno seria algo asiCódigo: Text Private Sub Text1_KeyPress(Index As Integer, KeyAscii As Integer)If KeyAscii = 13 Then If Index < 3 Then 'Ejemplo para 4 text Text1(Index + 1).SetFocus End IfEnd IfEnd Sub para el segundo si te entendi bien seria algo asi:Código: Text Dim veces As BytePrivate Sub Command1_Click()Randomizex = Rnd() * Len(Text1)x=Round(x)If x = 0 Then x = 1If x > Len(Text1) Then x = Len(Text1)For a = 0 To List1.ListCount - 1 If List1.List(a) = Mid(Text1, x, 1) Then veces = veces + 1NextMsgBox Mid(Text1, x, 1) & " " & vecesList1.AddItem Mid(Text1, x, 1)veces = 0End Sub