扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:佚名 来源:天极论坛整理 2007年10月14日
关键字: Visual Basic 预览 对话框
程序示例:
程序功能说明:
在窗体的file1中选择一个图片文件,点选“预览”复选框,image控件就显示相应的图片,label1就显示该图片的大小。
新建一个工程,加入以下控件:
控件 名称 属性
form form1 borderstyle=3
(vbsizedouble)
caption=“图片预览对话框"
drivelistbox drive1
dirlistbox dir1
filelistbox file1 pattern=“*.bmp;
*.jpg;*.gif"
image image1 stretch=true
checkbox chk value=“预览"
commandbutton cmd1 caption=“确定"
cmd2 caption=“退出"
label lab1 caption=“"
源代码:
以下是引用片段: 'declare Public filename$ dim sfilename$ Private sub drive1_change() dir1.path=drive1.drive End sub Private sub dir1_change() file1.path=dir1.path End sub Private sub cmd1_click() filename=sfilename End sub Private sub cmd2_click() End End sub Private sub file1_click() dim ssize as long if fille1.listcount>0 then if right(file1.path,1)<>“\" then sfilename=file1.path&“\"&file1.filename else sfilename=file1.path&file1.filename End if if chk.checked then image1.picture=loadpicture(“") image1.picture=loadpicture(sfilename) ssize=filelen(sfilename) ssize=ssize/1000 lab1.caption=str(ssize)&“k" else lab1.caption=“" image1.picture=loadpicture(“") end if end if End sub |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者