建一个 bitmap 句柄 完事了。

解决方案 »

  1.   

    To: SNUMA
    具体怎么做呢?
    谢谢你们,我不想保存在文件里……
      

  2.   

    Image2.Picture = Image1.Picture
      

  3.   

    Private Sub Command1_Click()
    Image2.Picture = Image1.Picture
    End SubPrivate Sub Command2_Click()
    Image1.Picture = LoadPicture("")
    End SubPrivate Sub Command3_Click()
    Image1.Picture = Image2.PictureEnd SubPrivate Sub Form_Click()
    Image2.Visible = False
    End Sub
      

  4.   

    Dim TempPic As IPictureDisp
    Set TempPic=Image1.Image
    Set Image1.Image=……
    ……
    Set Image1.Image=TempPic