Private Sub Form_Load()
Me.File1.Path = "C:\Image"
End Sub
Private Sub Picture1_Click()
End
End Sub
Private Sub Timer1_Timer()
For i = 0 To 3 Step 1
Me.File1.Selected(i) = True
Me.Picture1.Picture = LoadPicture(Me.File1.Path + "\" +
Me.File1.FileName)
Next
End Sub