Dim arr(24) As StringDim i As IntegerPrivate Sub Form_Load()Me.Timer1.Enabled = TrueMe.Timer1.Interval = 200..................
End Sub
Private Sub Timer1_Timer()If i > 23 Then i = 0i = i + 1Me.Text1.Text = arr(i)End Sub效果不好,抖动!