我本想在此向各位大师请教,但我失望了........

Private Sub command1_Click()'下一页
Static a As Integer
a = a + 1
Ima0.Picture = ImageList1.ListImages(a Mod 5 + 1).Picture
End Sub
这是压缩的文件
Private a As Integer
Private Sub command1_Click()
a = a + 1
If a > 5 Then a = 5
Ima0.Picture = ImageList1.ListImages(a).Picture
End Sub
Private Sub Command2_Click()
a = a - 1
If a <= 0 Then a = 1
Ima0.Picture = ImageList1.ListImages(a).Picture
End Sub