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

2006-12-14 23:31
2006-12-15 08:09
Private Sub command1_Click()'下一页
Static a As Integer
a = a + 1
Ima0.Picture = ImageList1.ListImages(a Mod 5 + 1).Picture
End Sub
这是压缩的文件

2006-12-15 09:27
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

2006-12-15 13:01
2006-12-15 14:07