çªä½ä¸æ¾ä¸ä¸ªPictureBoxï¼ä¸¤ä¸ªCommandButtonï¼ä¸ä¸ªFileListBox
Private Sub Command1_Click()
If File1.ListIndex = 0 Then
ShowPic File1.ListCount - 1
Else
ShowPic File1.ListIndex - 1
End If
End Sub
Private Sub Command2_Click()
If File1.ListIndex = File1.ListCount - 1 Then
ShowPic 0
Else
ShowPic File1.ListIndex + 1
End If
End Sub
Private Sub Form_Load()
File1.Visible = False
File1.Pattern = "*.jpg;*.gif" 'å¯ä»¥æµè§çæ件类åï¼ä½¿ç¨åå·éå¼
File1.Path = App.Path 'æ¹æä½ éè¦æµè§çç®å½ï¼æ¯å¦"C:\Pic"
If File1.ListCount > 1 Then 'ç®å½ä¸å¾çå¨ä¸¤å¼ 以ä¸å¯ä»¥æµè§
ShowPic 0
Exit Sub
ElseIf File1.ListCount = 1 Then 'ç®å½ä¸åªæä¸å¼ å¾çæ¶åªæ¾ç¤ºè¿ä¸å¼
ShowPic 0
End If
Command1.Enabled = False
Command2.Enabled = False
End Sub
Private Sub ShowPic(Index As Long)
File1.ListIndex = Index
Picture1.Picture = LoadPicture(File1.Path & "\" & File1.List(Index))
End Sub
å¦æ对æ¨æ帮å©ï¼è¯·è®°å¾é纳为满æçæ¡ï¼è°¢è°¢ï¼ç¥æ¨çæ´»æå¿«ï¼
vaela
温馨提示:答案为网友推荐,仅供参考