同上

解决方案 »

  1.   

    把图片加载在picturebox里,通过print方法打印,然后用
    image1.picture=picture1.image
      

  2.   

    加个LABEL标签控件,背景色为透明不就行了吗?!
    Private Sub Form_Load()
        Label1.BackStyle = vbTransparent
        Label1.Caption = "1"
    End Sub
      

  3.   

    picture1显示不全画面啊,怎样显示全啊,我也不能用无数个lable控件吧
      

  4.   

    直接在代码中修改就行了
    1.
    把图片加载在picturebox里,通过print方法打印或在里面画一个label控件直接修改它的值,然后用
    image1.picture=picture1.image2.直接用 picturebox 实现不行吗
      

  5.   

    將圖片放進 ImageList,然後加一個Timer控件
    Private sub Timer1_Timer()
       ImageList.Picture = ImageList.ListImages(圖片索引)
    end Sub