成人午夜激情影院,小视频免费在线观看,国产精品夜夜嗨,欧美日韩精品一区二区在线播放

[紅]Visual Basic中實現帶預覽的對話框

2010-08-28 10:49:27來源:西部e網作者:

    用戶在圖片框中選擇圖片時,希望預先對圖片的輪廓及大小有初步了解,但是VB的通用對話框沒有預覽的功能,為此需要定制一個自定義對話框。我們可以通過image控件加入窗體中來實現其功能。

   程序示例:

   程序功能說明:

   在窗體的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
關鍵詞:VisualBasic

贊助商鏈接:

主站蜘蛛池模板: 平和县| 来凤县| 芦溪县| 大渡口区| 浦县| 肥乡县| 阿合奇县| 当阳市| 济源市| 邵阳市| 株洲市| 屏东市| 姚安县| 桐庐县| 河北区| 临洮县| 池州市| 高台县| 茌平县| 鄂托克前旗| 肥东县| 缙云县| 金寨县| 东山县| 托克逊县| 渑池县| 施甸县| 公主岭市| 周口市| 定兴县| 江华| 吉林市| 溆浦县| 阜新| 沈阳市| 怀柔区| 永善县| 光山县| 改则县| 曲水县| 和田县|