方法很多,提供二个思路
方法一:把图片文件使用号码编号,比如p01.jpg\p02.jpg
if page=0 or page="" then
page=1
end if
if len(cstr(page))=1 then
p="0" & cstr(page)) '本程序只能少于99张图
else
p=cstr(page)
end if
filename="p"& p & ".jpg"
picture1.picture=app.Path & filename
下一页的按钮:
page=page+1
call 上面这段程序
方法二,把图片路径存入数据库,用数据库的分页方法来显示.
还有其他好多方法,自己想吧
[此贴子已经被作者于2006-11-20 21:41:06编辑过]