VB制作电子相册!

来源:百度知道 编辑:UC知道 时间:2024/05/29 13:19:21
我想用VB做一个电子相册,我的思路是这样的:先找一些照片放到文件夹里,然后在VB界面上以各种形式自动播放。请VB高手帮我编辑一下程序代码。谢谢!

再窗体上放置一个FileList,Image,Timer
窗体Load事件
file1.path=???
file1.parrent=???
==============================
Timer1_Timer事件
on error goto Back
for i = 0 to file1.listcount
if file1.select(i)=true then
file1.select(i+1)=true
end if
next
Back:
file1.select(0)
=========================