thanx all but forgot something???
thanx all but I don't want the value of x set to be the timer interval? The timer interval must be set by the values in the listbox.
What will happen if I change these values??????
Thanx Bob, think I have it allready
In the source below I can use different and more or less values in the listbox, now it's complete:
Private Sub Timer1_Timer()
If x <= List1.ListCount - 1 Then
Timer1.Interval = List1.List(x)
MsgBox List1.List(x)
x = x + 1
Else
Timer1.Enabled = False
x = 0
End If
End Sub