Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/07/2009, 09:47
Aioros-jms
 
Fecha de Ingreso: julio-2008
Mensajes: 116
Antigüedad: 15 años, 9 meses
Puntos: 1
Respuesta: Ayuda con listbox

Hola es algo así:

Código:
   Dim x As Integer

   Private Sub Timer1_Timer() 
         If x = List1.ListCount Then
             x = 0
         End If
         Text1.Text = List1.List(x)
         x = x + 1  
   End Sub
Al timer como ya te indicaron ponle al interval 10000

Saludos!!!