Private Sub Timer1_Timer()
Static intC As Integer
intC = intC + 1
If intC = 4 Then intC = 1
Select Case intC
Case 1
StatusBar1.Panels(3).Picture = Image1.Picture
Case 2
StatusBar1.Panels(3).Picture = Image2.Picture
Case 3
StatusBar1.Panels(3).Picture = Image3.Picture
End Select
End Sub